mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-17 18:24:10 +00:00
16 lines
314 B
TypeScript
16 lines
314 B
TypeScript
import type { RouteRecordRaw } from 'vue-router'
|
|
|
|
const dashboardRoutes: RouteRecordRaw[] = [
|
|
{
|
|
path: 'dashboard',
|
|
name: 'dashboard',
|
|
component: () => import('./views/DashboardView.vue'),
|
|
meta: {
|
|
requiresAuth: true,
|
|
ability: 'dashboard',
|
|
},
|
|
},
|
|
]
|
|
|
|
export default dashboardRoutes
|