从 React 的选项中选择项目后如何移除焦点 Material UI

How to Remove Focus after selecting Items from the Options in React Material UI

我已经链接了一个代码沙盒示例程序 Sample Program,在这里我们可以注意到一旦我们 select 选项中的一个项目仍然处于聚焦状态,但我不想要它在 select 选择一个选项后集中注意力。

有人可以帮助解决这个问题吗,在此先感谢:)

blurOnSelect 属性添加到 Autocomplete

<Autocomplete
    {...otherProps}
    blurOnSelect    // <== Here
/>

来自 Mui Autocomplete 文档:
https://mui.com/material-ui/api/autocomplete :

blurOnSelect: 'mouse' | 'touch' | bool
Default: false