0

我正在尝试重新使用 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 时,正文样式被附加了一个溢出:隐藏;但是,模式窗口不显示。作为重要说明,我正在使用惯性堆栈。

4

1 回答 1

2

我认为这个问题与布局有关。我忘了 <portal-target name="modal" multiple></portal-target>在我的自定义布局中包含。

于 2020-10-26T12:09:43.187 回答