Dashboard completed. Demo files added

This commit is contained in:
Bahadır Sofuoğlu
2022-11-03 11:46:46 +03:00
parent f76ef79b21
commit 94092fdb61
165 changed files with 15602 additions and 57 deletions

View File

@@ -1,5 +1,4 @@
import { createRouter, createWebHistory } from 'vue-router';
import HomeView from '../views/HomeView.vue';
import AppLayout from '@/layout/AppLayout.vue';
const router = createRouter({
@@ -11,8 +10,8 @@ const router = createRouter({
children: [
{
path: '',
name: 'Home',
component: HomeView
name: 'dashboard',
component: () => import('@/views/Dashboard.vue')
}
]
}