From 46b235ba91c27cc7deac6121656a2aa4134813f7 Mon Sep 17 00:00:00 2001 From: minie4 Date: Sun, 18 Jun 2023 21:18:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Make=20bottomnav=20hiding=20conf?= =?UTF-8?q?igurable=20in=20router?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 +- src/router/index.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 40ac463..4e99256 100644 --- a/src/App.vue +++ b/src/App.vue @@ -53,7 +53,7 @@ const isDataView = computed(() => route.meta.dataView || false); - + diff --git a/src/router/index.js b/src/router/index.js index 0f14795..883e7c9 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -80,6 +80,9 @@ const router = createRouter({ path: "/login", name: "title.login", component: LoginView, + meta: { + hideNav: true, + }, }, { path: "/token",