我正在尝试重用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时,主体样式将附加一个溢出:但是,模态窗口不会显示。重要说明,我正在使用惯性堆栈。
答案 0 :(得分:1)
我认为问题与布局有关。我忘了包括
<portal-target name="modal" multiple></portal-target>
在我的自定义布局中。