🎨 Define data routes in router config
This commit is contained in:
@ -19,16 +19,25 @@ const router = createRouter({
|
||||
path: "/timetable",
|
||||
name: "title.timetable",
|
||||
component: TimetableView,
|
||||
meta: {
|
||||
dataView: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/substitutions",
|
||||
name: "title.substitutions",
|
||||
component: SubstitutionView,
|
||||
meta: {
|
||||
dataView: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/history",
|
||||
name: "title.history",
|
||||
component: HistoryView,
|
||||
meta: {
|
||||
dataView: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/settings",
|
||||
|
Reference in New Issue
Block a user