en-US
Set the popover to modal via dModal.
Refer to aria-modal.
zh-CN
通过 dModal 设置弹出框为模态。
参考 aria-modal。
import { DPopover, DButton } from '@react-devui/ui';
export default function Demo() {
return (
<DPopover
dTrigger="click"
dContent={
<>
<div>Some contents...</div>
<div style={{ marginTop: 4 }}>Some contents...</div>
</>
}
dModal
>
<DButton>Modal</DButton>
</DPopover>
);
}