From 51ef980600153ee4bd02e5768cb0d5265e05cec7 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 1 Aug 2024 13:46:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/route.js | 10 ++++++++++ src/views/home/testx.vue | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 src/views/home/testx.vue diff --git a/src/config/route.js b/src/config/route.js index bdc887db..c8f937f0 100644 --- a/src/config/route.js +++ b/src/config/route.js @@ -25,6 +25,16 @@ const routes = [ perms: ["home"], }, children: [ + { + name: "testx", + path: "/testx", + meta: { + title: "测试页", + icon: "el-icon-monitor", + perms: ["testx"], + }, + component: "home/testx", + }, { name: "dashboard", path: "/dashboard", diff --git a/src/views/home/testx.vue b/src/views/home/testx.vue new file mode 100644 index 00000000..2efb0ea9 --- /dev/null +++ b/src/views/home/testx.vue @@ -0,0 +1,38 @@ + + \ No newline at end of file