fix(customer-vue): 즐겨찾기 매장 클릭 시 store로 이동

This commit is contained in:
bum12ark
2022-03-17 15:48:49 +09:00
parent 92097150ea
commit 66a15b2beb

View File

@@ -23,7 +23,10 @@
/>
</v-col>
<v-col v-for="card in cards" v-bind:key="card.storeId" sm="6">
<v-card v-bind:data-id="card.storeId">
<v-card
v-bind:data-id="card.storeId"
@click="clickCard(card.storeId)"
>
<v-img
height="180"
:src="require('@/assets/store.jpeg')"
@@ -110,6 +113,12 @@ export default {
favoriteCounts: store.favoriteCounts
})
});
},
clickCard: function(storeId) {
this.$router.push({
name: "store",
params: {storeId: storeId}
})
}
}
}