在Vue 3项目中使用 Vant UI中vant-popup 弹出层功能时,需要将 v-model="show" 更改为 v-model:show= "show"(Vue 3 语法) :
<van-popup
v-model:show="show"
closeable
close-icon="close"
position="bottom"
:style="{ height: ‘30%‘ }"
/>
Vant 官网默认语法(Vue 2 语法):