我正在尝试重新使用 Jetstream 对话框模式,但它似乎不起作用。这是取自官方文档的示例
<jet-dialog-modal :show="modal" @close="modal = false">
<template #title>
Delete Account
</template>
<template #content>
Test content
</template>
<template #footer>
Cancel
</template>
</jet-dialog-modal>
当我将 modal 属性设置为 true 并检查 DOM 时,正文样式被附加了一个溢出:隐藏;但是,模式窗口不显示。作为重要说明,我正在使用惯性堆栈。