先上CODE
<div v-for="item in items" :key="item.id">
<transition appear enter-active-class="animated bounceIn">
<q-item to="/main">
<img v-bind:src="item" class="responsive" />
</q-item>
</transition>
</div>
我的頁面會以陣列items的資料印出三張圖片
我的邏輯是在q-item裡面放一個方法辨識我點擊的是哪一張圖
<q-item v-on="method()" to="/main">
但不知道該怎麼辨識,
items陣列會依據不同使用者有不同的資料,
items陣列是動態的資料。
item陣列大概長這樣
["statics/pm.png","statics/pmm.png","statics/mpm.png","statics/ppm.png"]