ticketType dan ticketInsidance
NPM Installation / build (16.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (16.x, windows-latest) (push) Has been cancelled
NPM Installation / build (17.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (17.x, windows-latest) (push) Has been cancelled
NPM Installation / build (18.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (18.x, windows-latest) (push) Has been cancelled

This commit is contained in:
2026-06-27 09:28:39 +07:00
parent d57332ecf9
commit 63458f397d
11 changed files with 1304 additions and 64 deletions
+11 -3
View File
@@ -45,9 +45,7 @@ const routes = [
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () =>
import(
/* webpackChunkName: "dashboard" */ '@/views/dashboard/Dashboard.vue'
),
import(/* webpackChunkName: "dashboard" */ '@/views/dashboard/Dashboard.vue'),
},
{
path: '/tickets',
@@ -74,6 +72,11 @@ const routes = [
name: 'Ticket Materials',
component: () => import('@/views/tickets/TicketMaterials.vue'),
},
{
path: '/tickets/ticket-incident',
name: 'Ticket Incident',
component: () => import('@/views/tickets/TicketIncident.vue'),
},
{
path: '/tickets/approved',
name: 'Approved',
@@ -84,6 +87,11 @@ const routes = [
name: 'Rejected',
component: () => import('@/views/tickets/Rejected.vue'),
},
{
path: '/tickets/ticket-incident',
name: 'Ticket Incident',
component: () => import('@/views/tickets/TicketIncident.vue'),
},
],
},
{