我试图通过console.log(),helloword()和其他方式使用popovers。但是,由于MUI中的弹出式窗口是模态的,除非我在当前打开的弹出窗口外单击,否则我无法显示其他弹出窗口。
有没有办法禁用模态行为?
到目前为止,我通过属性强制非模态:
style ={{width:0, height:0}}
modal={null}
hideBackdrop={true}
disableBackdropClick={true}
disableAutoFocus={true}
disableEnforceFocus={true}
modal = {true | false}怎么样?