refactor(Home): 优化新建问卷弹窗的渲染位置

- 在 NewSurvey 组件中的 van-popup 添加 teleport="#app" 属性- 这个改动可以让弹窗在应用的最外层容器 (#app) 中渲染,避免层级问题
This commit is contained in:
陈昱达
2025-03-22 14:02:59 +08:00
parent 06f1d468e7
commit 672d910a3e

View File

@@ -3,7 +3,7 @@
<van-button type="primary" block color="#70B937" @click="create">
<span class="fw-bold">+</span> 新建问卷
</van-button>
<van-popup v-model:show="show" round closeable position="bottom">
<van-popup v-model:show="show" round closeable position="bottom" teleport="#app">
<create-question :createdNewPage="false"></create-question>
</van-popup>
</div>