From c59023a56f8acf08058920473c14cf1f74a8c371 Mon Sep 17 00:00:00 2001 From: hoon7566 Date: Tue, 15 Mar 2022 11:41:43 +0900 Subject: [PATCH] =?UTF-8?q?feat(customer=20vue):=20=EC=A3=BC=EB=AC=B8?= =?UTF-8?q?=ED=99=94=EB=A9=B4=EC=9C=BC=EB=A1=9C=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 매장 화면에서 주문화면으로 이동하는 기능 --- customer-vue/src/views/Layout/StoreLayout.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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") + } } } }