Add index page
This commit is contained in:
@ -2,12 +2,13 @@ import { createRouter, createWebHistory } from 'vue-router'
|
||||
import BudgetSidebar from '../pages/BudgetSidebar.vue';
|
||||
import Dashboard from '../pages/Dashboard.vue';
|
||||
import Login from '../pages/Login.vue';
|
||||
import Index from '../pages/Index.vue';
|
||||
import Register from '../pages/Register.vue';
|
||||
import Account from '../pages/Account.vue';
|
||||
import Settings from '../pages/Settings.vue';
|
||||
|
||||
const routes = [
|
||||
{ path: '/', name: 'Index', component: Dashboard },
|
||||
{ path: '/', name: 'Index', component: Index },
|
||||
{ path: '/dashboard', name: 'Dashboard', component: Dashboard },
|
||||
{ path: '/login', name: 'Login', component: Login },
|
||||
{ path: '/register', name: 'Register', component: Register },
|
||||
|
Reference in New Issue
Block a user