vue3.0 vant popup渲染不出来?
遇到这个问下,先检查看看是不是看着vant的2.x版本进行开发。vant2.x版本代码如下:<van-popupv-model="show"closeableposition="bottom":style="{ height: '30%' }"/>vant3.x版本代码如下:<van-popupv-model:show="show"roundposition="bottom":s
·
遇到这个问下,先检查看看是不是看着vant的2.x版本进行开发。
vant2.x版本代码如下:
<van-popup
v-model="show"
closeable
position="bottom"
:style="{ height: '30%' }"
/>
vant3.x版本代码如下:
<van-popup
v-model:show="show"
round
position="bottom"
:style="{ height: '30%' }"
/>
发现 v-model:show=“show”,v-model的时候多了个:show。
开发时还是得注意看插件的版本号是不是支持到vue3.x。
vant 3.x地址:https://vant-contrib.gitee.io/vant/next/#/zh-CN
更多推荐
已为社区贡献1条内容
所有评论(0)