|
|
@ -1,12 +1,12 @@ |
|
|
import {createRouter, createWebHistory} from 'vue-router'; |
|
|
import {createRouter, createWebHistory} from 'vue-router'; |
|
|
import SystemMessagesPage from '../components/SystemMessagesPage.vue'; |
|
|
import SystemMessagesPage from '../components/SystemMessagesPage.vue'; |
|
|
import SystemMessages from '../components/SystemMesssages.vue'; |
|
|
import SystemMessages from '../components/SystemMesssages.vue'; |
|
|
import TestPage from '../components/TestPage.vue'; |
|
|
|
|
|
|
|
|
import Dashboard from '../components/Dashboard.vue'; |
|
|
|
|
|
|
|
|
const routes = [ |
|
|
const routes = [ |
|
|
{path: '/systemmessage', name: 'SystemMessage', component: SystemMessages}, |
|
|
{path: '/systemmessage', name: 'SystemMessage', component: SystemMessages}, |
|
|
{path: '/systemmessagelist', name: 'SystemMessageList', component: SystemMessagesPage}, |
|
|
{path: '/systemmessagelist', name: 'SystemMessageList', component: SystemMessagesPage}, |
|
|
{path: '/', name: 'TestPage', component: TestPage} |
|
|
|
|
|
|
|
|
{path: '/dashboard', name: 'Dashboard', component: Dashboard} |
|
|
]; |
|
|
]; |
|
|
|
|
|
|
|
|
const router = createRouter({ |
|
|
const router = createRouter({ |
|
|
|