Client - clean vue-cli template files

This commit is contained in:
Sam
2021-07-25 13:34:44 +02:00
parent 5d80039319
commit 6ba8ca385e
7 changed files with 22 additions and 206 deletions

View File

@ -1,20 +1,11 @@
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
import Home from '../views/Home.vue'
import Dashboard from '@/views/DashBoard.vue'
const routes: Array<RouteRecordRaw> = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/about',
name: 'About',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
import(/* webpackChunkName: "about" */ '../views/About.vue'),
name: 'Dashboard',
component: Dashboard,
},
]