diff --git a/xroom-dashboard/src/pages/dashboard/ChangeAvatar.vue b/xroom-dashboard/src/pages/dashboard/ChangeAvatar.vue new file mode 100644 index 0000000..2b31c6a --- /dev/null +++ b/xroom-dashboard/src/pages/dashboard/ChangeAvatar.vue @@ -0,0 +1,511 @@ + + + + + diff --git a/xroom-dashboard/src/router/index.js b/xroom-dashboard/src/router/index.js index 49088c7..4071184 100644 --- a/xroom-dashboard/src/router/index.js +++ b/xroom-dashboard/src/router/index.js @@ -39,6 +39,12 @@ const routes = [ name: 'EditProfile', component: () => import('@/pages/dashboard/EditProfile.vue'), meta: { requiresAuth: true } + }, + { + path: '/dashboard/ChangeAvatar', + name: 'ChangeAvatar', + component: () => import('@/pages/dashboard/ChangeAvatar.vue'), + meta: { requiresAuth: true } } ]