From 251096cecc1b2abde8ea950d7b6944dd47752780 Mon Sep 17 00:00:00 2001 From: mi1468 Date: Mon, 5 May 2025 14:58:49 +0330 Subject: [PATCH] added avatar page --- .../src/pages/dashboard/ChangeAvatar.vue | 511 ++++++++++++++++++ xroom-dashboard/src/router/index.js | 6 + 2 files changed, 517 insertions(+) create mode 100644 xroom-dashboard/src/pages/dashboard/ChangeAvatar.vue 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 } } ]