diff --git a/customer-vue/src/views/Layout/StoreLayout.vue b/customer-vue/src/views/Layout/StoreLayout.vue index 9dc2dea..e16c422 100644 --- a/customer-vue/src/views/Layout/StoreLayout.vue +++ b/customer-vue/src/views/Layout/StoreLayout.vue @@ -8,6 +8,17 @@ +
+ + mdi-basket + +
@@ -45,6 +56,11 @@ export default { const response = await storeApi.requestStore(this.store.id); this.store = response.data.data; + }, + toOrder(){ + if(confirm("주문화면으로 이동할까요?")){ + this.$router.replace("/order") + } } } }