From 79f27be41d87cb76dcd1b4c868ea41ff38c8aa30 Mon Sep 17 00:00:00 2001 From: yangbin Date: Thu, 25 Jul 2024 18:04:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0callback?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 7 +++++ src/views/callback/index.vue | 59 ++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 src/views/callback/index.vue diff --git a/src/router/index.js b/src/router/index.js index 022a9a1..cff0c09 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -14,6 +14,13 @@ export const constantRoutes = [ title: '登录', hidden: true }, + { + path: '/callback', + name: 'Callback', + component: () => import('@/views/callback/index'), + title: '回调', + hidden: true + }, { path: '/404', name: '404', diff --git a/src/views/callback/index.vue b/src/views/callback/index.vue new file mode 100644 index 0000000..2457923 --- /dev/null +++ b/src/views/callback/index.vue @@ -0,0 +1,59 @@ + + + + + + \ No newline at end of file