<template>
<wd-img
custom-class="imgView"
:width="220"
:height="120"
src="https://jeecgos.oss-cn-beijing.aliyuncs.com/files/site/projectCase/mini/banner/10bdc1.jpg"
@click="() => (imgPreview.show = true)"
></wd-img>
<ImgPreview v-if="imgPreview.show" :urls="imgPreview.urls" @close="() => (imgPreview.show = false)"></ImgPreview>
</template>
<script>
import { ref } from 'vue';
const imgPreview = ref({
show: false,
urls: [
'https://jeecgos.oss-cn-beijing.aliyuncs.com/files/site/projectCase/mini/banner/10bdc1.jpg',
'https://static.jeecg.com/files/app_logo.png'
]
});
</script>