From 4fb1960787da2566c350398441dac950bdaeab5c Mon Sep 17 00:00:00 2001 From: YM <479443481@qq.com> Date: 星期三, 15 五月 2024 12:20:22 +0800 Subject: [PATCH] 通信 --- src/router/index.ts | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index 7088b74..9664723 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -23,11 +23,16 @@ path: '/home', name: 'home', meta: { auth: true }, - component: Home, + component: Home + }, + { + path: '/dictionary', + name: 'dictionary', + meta: { auth: true }, + component: () =>import('@/views/components/dictionary.vue') } ] } - ] }) -- Gitblit v1.9.1