vue中图片预览缩略图,在点击缩略图时弹出大图,想在查看大图的时候,在图片上显示一段文字,用来图片说明,放在图片的左下角,如何显示?用data-content没有效果。应该用什么?
<div v-viewer="options" class="images">
<template v-for="item in imageList">
<img :src="item.thumbnailPath" class="image" :key="item.imageId" :data-src="item.originalImagePath" data-content="aaaaaa">
//data-content没有效果
</template>
</div>
原文地址:https://www.cnblogs.com/yitda/p/12708153.html
时间: 2024-11-09 03:41:11