mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 03:04:05 +00:00
16 lines
321 B
TypeScript
16 lines
321 B
TypeScript
import type { RouteRecordRaw } from 'vue-router'
|
|
|
|
const reportRoutes: RouteRecordRaw[] = [
|
|
{
|
|
path: 'reports',
|
|
name: 'reports',
|
|
component: () => import('./views/ReportsLayoutView.vue'),
|
|
meta: {
|
|
requiresAuth: true,
|
|
ability: 'view-financial-reports',
|
|
},
|
|
},
|
|
]
|
|
|
|
export default reportRoutes
|