fix(customer-vue): 홈 매장 클릭 시 store로 이동

This commit is contained in:
bum12ark
2022-03-17 15:33:54 +09:00
parent 9d0a10b6c5
commit 50f56860e1

View File

@@ -26,6 +26,7 @@
class="my-3 mx-3"
height="250"
width="165"
@click="clickStore(item.id)"
>
<v-skeleton-loader>
<v-img
@@ -59,7 +60,14 @@
export default {
name: "SlideStore",
props:["storeList", "id"],
methods: {
clickStore: function(storeId) {
this.$router.push({
name: "store",
params: {storeId: storeId}
})
}
}
}
</script>