25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

33 satır
714 B

2 yıl önce
import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
2 yıl önce
2 yıl önce
import Layout from '@/layout/Index.vue'
2 yıl önce
const routes: Array<RouteRecordRaw> =
[
2 yıl önce
{
path: '/',
2 yıl önce
name: 'Layout',
component: Layout,
redirect: '/chg',
children: [
{
path: 'chg',
name: 'StockChg',
component: () => import('@/views/stock/chg/Index.vue')
},
{
path: 'plate',
name: 'StockPlate',
component: () => import('@/views/stock/plate/Index.vue')
2 yıl önce
}
]
2 yıl önce
}
2 yıl önce
]
const router = createRouter({
2 yıl önce
history: createWebHashHistory(),
routes
2 yıl önce
})
2 yıl önce
export default router