docs(ImagePreview): fix component call demo

This commit is contained in:
chenjiahan
2020-08-31 19:25:51 +08:00
parent 476e16ff2d
commit f0675d043a
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ setTimeout(() => {
如果需要在图片预览内嵌入组件或其他自定义内容,可以使用组件调用的方式,调用前需要通过 `app.use` 注册组件。
```html
<van-image-preview v-model="show" :images="images" @change="onChange">
<van-image-preview v-model:show="show" :images="images" @change="onChange">
<template v-slot:index>第{{ index }}页</template>
</van-image-preview>
```