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

View File

@ -82,7 +82,7 @@ setTimeout(() => {
### Component Call
```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>Page: {{ index }}</template>
</van-image-preview>
```

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>
```

View File

@ -28,7 +28,11 @@
<van-cell is-link @click="componentCall">
{{ t('componentCall') }}
</van-cell>
<van-image-preview v-model="show" :images="images" @change="onChange">
<van-image-preview
v-model:show="show"
:images="images"
@change="onChange"
>
<template #index>{{ t('index', index) }}</template>
</van-image-preview>
</demo-block>