12345678910111213141516171819202122232425262728293031323334353637 |
- import { createRouter, createWebHashHistory } from 'vue-router'
- import CenterPage from 'views/CenterPage.vue'
- const routes = [
- {
- path: '/',
- name: 'CenterPage',
- component: CenterPage
- },
- {
- path: '/AllMatrices',
- name: 'AllMatrices',
- component: () => import('components/allMatricesNoDia.vue')
- },
- {
- path: '/TemperatureMatrix',
- name: 'TemperatureMatrix',
- component: () => import('components/temperatureMatrixNoDia.vue')
- },
- {
- path: '/SYZDetails',
- name: 'SYZDetails',
- component: () => import('components/focus/syzDetailsNoDia.vue')
- },
- {
- path: '/ManualPage',
- name: 'ManualPage',
- component: () => import('views/ManualPage.vue')
- }
- ]
- const router = createRouter({
- history: createWebHashHistory(),
- routes
- })
- export default router
|