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 @@ + + + + +