docs(CouponList): fix Popup v-model usage (#9237)

This commit is contained in:
neverland 2021-08-11 11:49:24 +08:00 committed by GitHub
parent 735f7dd24a
commit 4578477a6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ app.use(CouponList);
/> />
<!-- Coupon List --> <!-- Coupon List -->
<van-popup <van-popup
v-model="state.showList" v-model:show="state.showList"
round round
position="bottom" position="bottom"
style="height: 90%; padding-top: 4px;" style="height: 90%; padding-top: 4px;"

View File

@ -30,7 +30,7 @@ app.use(CouponList);
/> />
<!-- 优惠券列表 --> <!-- 优惠券列表 -->
<van-popup <van-popup
v-model="state.showList" v-model:show="state.showList"
round round
position="bottom" position="bottom"
style="height: 90%; padding-top: 4px;" style="height: 90%; padding-top: 4px;"