antdv 年份筛选
1
2
3
4
5
6
7
8
9
10
11
<viewer :images="picture" :options="viewerOptions">
<img
v-for="(pic, index) of picture"
:key="index"
:src="pic"
alt=""
:onerror="defaultImg"
style="cursor:pointer"
/>
</viewer>
images 的 picture 一定要和 v-for 的对应上
This post is licensed under CC BY 4.0 by the author.