From ed094549370592f44eba8a47e1ffbf9d25ee8d18 Mon Sep 17 00:00:00 2001 From: heshunme Date: Sat, 29 Jun 2024 23:25:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E4=BA=86=E6=B3=A8=E5=86=8C?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=9A=84=E7=BB=98=E5=88=B6=EF=BC=8C=E5=9C=A8?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E5=92=8C=E6=B3=A8=E5=86=8C=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E4=B8=8A=E5=88=86=E5=88=AB=E6=B7=BB=E5=8A=A0=E4=BA=86=E7=9B=B8?= =?UTF-8?q?=E4=BA=92=E8=B7=B3=E8=BD=AC=E7=9A=84=E9=93=BE=E6=8E=A5=E3=80=82?= =?UTF-8?q?=20=E6=B3=A8=E5=86=8C=E4=BA=86=E6=B3=A8=E5=86=8C=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E7=9A=84=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/authentication.js | 4 +- src/views/authentication/Login.vue | 68 +++++++-------- src/views/authentication/Register.vue | 116 ++++++++++++++++++++++++++ 3 files changed, 148 insertions(+), 40 deletions(-) create mode 100644 src/views/authentication/Register.vue diff --git a/src/router/authentication.js b/src/router/authentication.js index 188be90..50c3785 100644 --- a/src/router/authentication.js +++ b/src/router/authentication.js @@ -1,10 +1,10 @@ // !!!这是一个示例,请根据实际情况修改!!! import Login from '../views/authentication/Login.vue' -// import Register from '../views/authentication/Register.vue' +import Register from '../views/authentication/Register.vue' // import Profile from '../views/authentication/Profile.vue' export default [ { path: '/login', component: Login }, - // { path: '/register', component: Register }, + { path: '/register', component: Register }, // { path: '/profile', component: Profile } ] diff --git a/src/views/authentication/Login.vue b/src/views/authentication/Login.vue index ff32c0f..ed79644 100644 --- a/src/views/authentication/Login.vue +++ b/src/views/authentication/Login.vue @@ -1,5 +1,7 @@ + + + +