refactor(Home): 优化新建问卷弹窗的渲染位置
- 在 NewSurvey 组件中的 van-popup 添加 teleport="#app" 属性- 这个改动可以让弹窗在应用的最外层容器 (#app) 中渲染,避免层级问题
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user