From dc4bd8afb61562c494a3a1ed534c83edd8fb41e6 Mon Sep 17 00:00:00 2001 From: heshunme Date: Sun, 30 Jun 2024 00:26:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E4=BA=86=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2=E7=9A=84?= =?UTF-8?q?=E7=BB=98=E5=88=B6=20=E6=B3=A8=E5=86=8C=E4=BA=86=E8=AF=A5?= =?UTF-8?q?=E9=A1=B5=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 | 2 + src/views/authentication/ManageProfile.vue | 129 +++++++++++++++++++++ 2 files changed, 131 insertions(+) create mode 100644 src/views/authentication/ManageProfile.vue diff --git a/src/router/authentication.js b/src/router/authentication.js index 50c3785..74430e9 100644 --- a/src/router/authentication.js +++ b/src/router/authentication.js @@ -1,10 +1,12 @@ // !!!这是一个示例,请根据实际情况修改!!! import Login from '../views/authentication/Login.vue' import Register from '../views/authentication/Register.vue' +import ManageProfile from '../views/authentication/ManageProfile.vue' // import Profile from '../views/authentication/Profile.vue' export default [ { path: '/login', component: Login }, { path: '/register', component: Register }, + { path: '/manageProfile', component: ManageProfile }, // { path: '/profile', component: Profile } ] diff --git a/src/views/authentication/ManageProfile.vue b/src/views/authentication/ManageProfile.vue new file mode 100644 index 0000000..3a1fc70 --- /dev/null +++ b/src/views/authentication/ManageProfile.vue @@ -0,0 +1,129 @@ + + + + +