diff --git a/src/layouts/NormalLayout.vue b/src/layouts/NormalLayout.vue index e0bbe8f..370514f 100644 --- a/src/layouts/NormalLayout.vue +++ b/src/layouts/NormalLayout.vue @@ -1,56 +1,53 @@ - - - - - - - - - - - - body - - - + + + + + + + + + + + body + + + + - + + + + + + - - - - - - - diff --git a/src/layouts/TheFooter.vue b/src/layouts/TheFooter.vue index 4f78c8e..7ee5090 100644 --- a/src/layouts/TheFooter.vue +++ b/src/layouts/TheFooter.vue @@ -1,23 +1,19 @@ - - - + diff --git a/src/layouts/TheMenu.vue b/src/layouts/TheMenu.vue index 48f1696..9be3f9a 100644 --- a/src/layouts/TheMenu.vue +++ b/src/layouts/TheMenu.vue @@ -1,59 +1,59 @@ - - - + + diff --git a/src/layouts/TheTop.vue b/src/layouts/TheTop.vue index 8068ff7..b3a2d12 100644 --- a/src/layouts/TheTop.vue +++ b/src/layouts/TheTop.vue @@ -1,565 +1,501 @@ - - - - - - - - - - - - - - Search (Ctrl+/) - + + + + + - - - - - - - - - - - - English - - - - - French - - - - - Arabic - - - - - German - - - - - - - - - - - - - - - Light - - - - - Dark - - - - - System - - - - - - - - - - - - - - - Shortcuts - - + + + + + + + Search (Ctrl+/) + + - - - - - - - Calendar - Appointments - - - - - - Invoice App - Manage Accounts - - - - - - - - User App - Manage Users - - - - - - Role Management - Permission - - - - - - - - Dashboard - User Dashboard - - - - - - Setting - Account Settings - - - - - - - - FAQs - FAQs & Articles - - - - - - Modals - Useful Popups - - - - - - + - - - - - - - - - - - - Notification - - 8 New - - - - - - - - - - - - - - - Congratulation Lettie 🎉 - Won the monthly best seller gold badge - 1h ago - - - - - - + + + + + + + + + + English + + + + + French + + + + + Arabic + + + + + German + + + - - - - - CF - - - - Charles Franklin - Accepted your connection - 12hr ago - - - - - - - - - - - - - - - - New Message ✉️ - You have new message from Natalie - 1h ago - - - - - - - - - - - - - - - - Whoo! You have new order 🛒 - ACME Inc. made new order $1,154 - 1 day ago - - - - - - - - - - - - - - - - Application has been approved 🚀 - Your ABC project application has been approved. - 2 days ago - - - - - - - - - - - - - - - - Monthly report is generated - July monthly financial report is generated - - 3 days ago - - - - - - - - - - - - - - - - Send connection request - Peter sent you connection request - 4 days ago - - - - - - - - - - - - - - - - New message from Jane - Your have new message from Jane - 5 days ago - - - - - - - - - - - - - - - - CPU is running high - CPU Utilization Percent is currently at 88.63%, - 5 days ago - - - - - - - - - - - - - View all notifications - - - - - - - - - - - - - - - - - - - - - - - - John Doe - Admin - - - - - - - - - - My Profile - - - - - Settings - - - - - - Billing Plan - 4 - - - - - - - - - Pricing - - - - - FAQ - - - - - - - - Log Out - - - - - - - + - - - - - - + + + + + + + + + Light + + + + + Dark + + + + + System + + + + + + + + + + + + + + + Shortcuts + + + + + + + + + + Calendar + Appointments + + + + + + Invoice App + Manage Accounts + + + + + + + + User App + Manage Users + + + + + + Role Management + Permission + + + + + + + + Dashboard + User Dashboard + + + + + + Setting + Account Settings + + + + + + + + FAQs + FAQs & Articles + + + + + + Modals + Useful Popups + + + + + + + + + + + + + + + + + + + Notification + + 8 New + + + + + + + + + + + + + + + Congratulation Lettie 🎉 + Won the monthly best seller gold badge + 1h ago + + + + + + + + + + + + CF + + + + Charles Franklin + Accepted your connection + 12hr ago + + + + + + + + + + + + + + + + New Message ✉️ + You have new message from Natalie + 1h ago + + + + + + + + + + + + + + + + Whoo! You have new order 🛒 + ACME Inc. made new order $1,154 + 1 day ago + + + + + + + + + + + + + + + + Application has been approved 🚀 + Your ABC project application has been approved. + 2 days ago + + + + + + + + + + + + + + + + Monthly report is generated + July monthly financial report is generated + 3 days ago + + + + + + + + + + + + + + + + Send connection request + Peter sent you connection request + 4 days ago + + + + + + + + + + + + + + + + New message from Jane + Your have new message from Jane + 5 days ago + + + + + + + + + + + + + + + + CPU is running high + CPU Utilization Percent is currently at 88.63%, + 5 days ago + + + + + + + + + + + + + View all notifications + + + + + + + + + + + + + + + + + + + + + + + + John Doe + Admin + + + + + + + + + + My Profile + + + + + Settings + + + + + + Billing Plan + 4 + + + + + + + + + Pricing + + + + + FAQ + + + + + + + + Log Out + + + + + + + + + + + + + + diff --git a/src/router/index.js b/src/router/index.js index fc8979b..df6ed42 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -3,14 +3,15 @@ import { createRouter, createWebHistory } from 'vue-router' // 초기 렌더링 속도를 위해 지연 로딩 사용 const routes = [ { - path: '/:anyting(.*)', + path: '/', + name : 'main', component: () => import('@v/MainView.vue'), // meta: { requiresAuth: true } }, { - // path: '/layouts-collapsed-menu.html', - // component: () => import('@v/MainView.vue'), - // meta: { requiresAuth: true } + path: '/board', + name : 'board', + component: () => import('@v/TheBoard.vue'), }, // { // path: "/login", diff --git a/src/views/MainView.vue b/src/views/MainView.vue index 5d99817..0760a82 100644 --- a/src/views/MainView.vue +++ b/src/views/MainView.vue @@ -1,1294 +1,1192 @@ - - - - - - - - - - Congratulations John! 🎉 - - You have done 72% more sales today.Check your new badge in your profile. - - - View Badges - - - - - - - - - - - + - - - - Order - 276k - - - - - - - - - - - - - - - - - View More - Delete + + + + + + + + Congratulations John! 🎉 + You have done 72% more sales today.Check your new badge in your profile. + + View Badges + + + + + + + - - Sales - $4,679 - +28.42% - - - - - - - - - - - - Total Revenue + + + + + + Order + 276k + + + + + + + + + + + + + + + + + View More + Delete + + + + Sales + $4,679 + +28.42% + + + - - - - - - Select All - Refresh - Share - - - - - - - - - - 2023 - + + + + + + + Total Revenue + + + + + + + Select All + Refresh + Share + + + + + + + + + + + 2023 + - - - Toggle Dropdown - - - 2023 - 2022 - 2021 - - - + + + Toggle Dropdown + + + 2023 + 2022 + 2021 + + + - - 62% Company Growth + + 62% Company Growth - - - - - - - - 2024 - - - $32.5k - - - - - - - - - 2023 - - - $41.2k + + $41.2k + + + + + + + + + + + + + + + + + + + + + + + + View More + Delete + + + + Payments + $2,456 + -14.82% + + + + + + + Revenue + 425k + + + + + + + + + + + Profile Report + YEAR 2022 + + + 68.2% + $84,686k + + + + + + - - - - - - - - - - - - - - - - - - - View More - Delete - - - - Payments - $2,456 - -14.82% - - - - - - - Revenue - 425k - - - - - - - - - - - Profile Report - YEAR 2022 - - - 68.2% - $84,686k - - - - - - - - - - - - - - - - - Order Statistics - 42.82k Total Sales - - - - - - - Select All - Refresh - Share - - - - - - - 8,258 - Total Orders - - - - - - - - - - - Electronic - Mobile, Earbuds, TV - - - 82.5k - - - - - - - - - - Fashion - T-shirt, Jeans, Shoes - - - 23.8k - - - - - - - - - - Decor - Fine Art, Dining - - - 849k - - - - - - - - - - Sports - Football, Cricket Kit - - - 99 - - - - - - - - - - - - - - - - - Income - - - - Expenses - - - Profit - - - - - - - - - - - - Total Balance - - $459.10 - - - 42.9% - - - - - - - - - - - Income this week - $39k less than last week - - - - - - - - - - - - - - Transactions - - - - - - Last 28 Days - Last Month - Last Year - - - - - - - - - - - - Paypal - Send money - - - +82.6 - USD - - - - - - - - - - Wallet - Mac'D - - - +270.69 - USD - - - - - - - - - - Transfer - Refund - - - +637.91 - USD - - - - - - - - - - Credit Card - Ordered Food - - - -838.71 - USD - - - - - - - - - - Wallet - Starbucks - - - +203.33 - USD - - - - - - - - - - Mastercard - Ordered Food - - - -92.45 - USD - - - - - - - - - - - - - Activity Timeline - - - - - - Select All - Refresh - Share - - - - - - - - - - 12 Invoices have been paid - 12 min ago - - Invoices have been paid to the company - - - - invoices.pdf - - - - - - - - - Client Meeting - 45 min ago - - Project meeting with john @10:15am - - - - - - - Lester McCarthy (Client) - CEO of ThemeSelection - - - - - - - - - - Create a new project for client - 2 Day Ago - - 6 team members in a project - - - - - - - - - - - - - - - +3 + + + + + Order Statistics + 42.82k Total Sales + + + - + + + + Select All + Refresh + Share + + + + + + + 8,258 + Total Orders + + + + + + + + + + + Electronic + Mobile, Earbuds, TV + + + 82.5k + + + + + + + + + + Fashion + T-shirt, Jeans, Shoes + + + 23.8k + + + + + + + + + + Decor + Fine Art, Dining + + + 849k + + + + + + + + + + Sports + Football, Cricket Kit + + + 99 + + + - - - + - - - + + + + + + + + + + + Income + + + + Expenses + + + Profit + + + + + + + + + + + + Total Balance + + $459.10 + + + 42.9% + + + + + + + + + + + Income this week + $39k less than last week + + + + + + + + + + + + + + Transactions + + + + + + Last 28 Days + Last Month + Last Year + + + + + + + + + + + + Paypal + Send money + + + +82.6 + USD + + + + + + + + + + Wallet + Mac'D + + + +270.69 + USD + + + + + + + + + + Transfer + Refund + + + +637.91 + USD + + + + + + + + + + Credit Card + Ordered Food + + + -838.71 + USD + + + + + + + + + + Wallet + Starbucks + + + +203.33 + USD + + + + + + + + + + Mastercard + Ordered Food + + + -92.45 + USD + + + + + + + + + + + + + Activity Timeline + + + + + + Select All + Refresh + Share + + + + + + + + + + 12 Invoices have been paid + 12 min ago + + Invoices have been paid to the company + + + + invoices.pdf + + + + + + + + + Client Meeting + 45 min ago + + Project meeting with john @10:15am + + + + + + + Lester McCarthy (Client) + CEO of ThemeSelection + + + + + + + + + + Create a new project for client + 2 Day Ago + + 6 team members in a project + + + + + + + + + + + + + + + +3 + + + + + + + + + + + + + + + + + + + + Browser + + + + + Operating System + + + + + Country + + + + + + + + + + + No + Browser + Visits + Data In Percentage + + + + + 1 + + + + Chrome + + + 8.92k + + + + + + 64.75% + + + + + 2 + + + + Safari + + + 1.29k + + + + + + 18.43% + + + + + 3 + + + + Firefox + + + 328 + + + + + + 8.37% + + + + + 4 + + + + Edge + + + 142 + + + + + + 6.12% + + + + + 5 + + + + Opera + + + 82 + + + + + + 2.12% + + + + + 6 + + + + UC Browser + + + 328 + + + + + + 20.14% + + + + + + + + + + + + + No + System + Visits + Data In Percentage + + + + + 1 + + + + Windows + + + 875.24k + + + + + + 61.50% + + + + + 2 + + + + Mac + + + 89.68k + + + + + + 16.67% + + + + + 3 + + + + Ubuntu + + + 37.68k + + + + + + 12.82% + + + + + 4 + + + + Chrome + + + 8.34k + + + + + + 6.25% + + + + + 5 + + + + Cent + + + 2.25k + + + + + + 2.76% + + + + + 6 + + + + Linux + + + 328k + + + + + + 20.14% + + + + + + + + + + + + + No + Country + Visits + Data In Percentage + + + + + 1 + + + + USA + + + 87.24k + + + + + + 38.12% + + + + + 2 + + + + Brazil + + + 42.68k + + + + + + 28.23% + + + + + 3 + + + + India + + + 12.58k + + + + + + 14.82% + + + + + 4 + + + + Australia + + + 4.13k + + + + + + 12.72% + + + + + 5 + + + + France + + + 2.21k + + + + + + 7.11% + + + + + 6 + + + + Canada + + + 22.35k + + + + + + 15.13% + + + + + + + + + + + - - - - - - - - - - Browser - - - - - Operating System - - - - - Country - - - - - - - - - - - No - Browser - Visits - Data In Percentage - - - - - 1 - - - - Chrome - - - 8.92k - - - - - - 64.75% - - - - - 2 - - - - Safari - - - 1.29k - - - - - - 18.43% - - - - - 3 - - - - Firefox - - - 328 - - - - - - 8.37% - - - - - 4 - - - - Edge - - - 142 - - - - - - 6.12% - - - - - 5 - - - - Opera - - - 82 - - - - - - 2.12% - - - - - 6 - - - - UC Browser - - - 328 - - - - - - 20.14% - - - - - - - - - - - - - No - System - Visits - Data In Percentage - - - - - 1 - - - - Windows - - - 875.24k - - - - - - 61.50% - - - - - 2 - - - - Mac - - - 89.68k - - - - - - 16.67% - - - - - 3 - - - - Ubuntu - - - 37.68k - - - - - - 12.82% - - - - - 4 - - - - Chrome - - - 8.34k - - - - - - 6.25% - - - - - 5 - - - - Cent - - - 2.25k - - - - - - 2.76% - - - - - 6 - - - - Linux - - - 328k - - - - - - 20.14% - - - - - - - - - - - - - No - Country - Visits - Data In Percentage - - - - - 1 - - - - USA - - - 87.24k - - - - - - 38.12% - - - - - 2 - - - - Brazil - - - 42.68k - - - - - - 28.23% - - - - - 3 - - - - India - - - 12.58k - - - - - - 14.82% - - - - - 4 - - - - Australia - - - 4.13k - - - - - - 12.72% - - - - - 5 - - - - France - - - 2.21k - - - - - - 7.11% - - - - - 6 - - - - Canada - - - 22.35k - - - - - - 15.13% - - - - - - - - - - - - diff --git a/src/views/TheBoard.vue b/src/views/TheBoard.vue new file mode 100644 index 0000000..559346b --- /dev/null +++ b/src/views/TheBoard.vue @@ -0,0 +1,15 @@ + + + + board + + + + + + +
- You have done 72% more sales today.Check your new badge in your profile. -
You have done 72% more sales today.Check your new badge in your profile.
Sales
Payments
42.82k Total Sales
Total Balance
Invoices have been paid to the company
Project meeting with john @10:15am
Lester McCarthy (Client)
6 team members in a project