mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
docs(ImagePreview): fix missing parameters (#12955)
This commit is contained in:
parent
8ca1d414c8
commit
ad117d5ffd
@ -194,7 +194,7 @@ When you customize the image through the `image` slot, you can bind the `style`
|
||||
:close-on-click-image="false"
|
||||
>
|
||||
<template #image="{ src, style, onLoad }">
|
||||
<img :style="[{ width: '100%' }, style]" @load="onLoad" />
|
||||
<img :src="src" :style="[{ width: '100%' }, style]" @load="onLoad" />
|
||||
</template>
|
||||
</van-image-preview>
|
||||
```
|
||||
|
@ -195,7 +195,7 @@ export default {
|
||||
:close-on-click-image="false"
|
||||
>
|
||||
<template #image="{ src, style, onLoad }">
|
||||
<img :style="[{ width: '100%' }, style]" @load="onLoad" />
|
||||
<img :src="src" :style="[{ width: '100%' }, style]" @load="onLoad" />
|
||||
</template>
|
||||
</van-image-preview>
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user