uniapp图片预览uni.previewImage

html

<image
    :src="src"
    style="width: 32px;height: 32px;"
    @click="imgPreview()"
></image>

js

data() {
    return {
        src:'https://cdn.uviewui.com/uview/album/1.jpg'
            }
},
imgPreview() {
    let url = this.src
    uni.previewImage({
        indicator: "number",
        loop: true,
        urls: [url]
    })
},

猜你喜欢

转载自blog.csdn.net/starstarstarl/article/details/129048248
今日推荐