|
import { createRouter, createWebHistory } from 'vue-router';
|
|
import ChatInterface from './components/ChatInterface.vue';
|
|
import InternSelection from './components/InternSelection.vue';
|
|
import DecisionList from './components/DecisionList.vue';
|
|
import UserLogin from './components/UserLogin.vue';
|
|
import DecisionAfter from './components/DecisionAfter.vue';
|
|
import SurfacePro816 from './components/SurfacePro816.vue';
|
|
|
|
const routes = [
|
|
{ path: '/', component: UserLogin },
|
|
{ path: '/decision-list', component: DecisionList, name: 'decision-list' },
|
|
{ path: '/chat-interface', component: ChatInterface, name: 'chat-interface' },
|
|
{ path: '/result', component: InternSelection, name: 'result' },
|
|
{ path: '/decision-after', component: DecisionAfter, name: 'decision-after' },
|
|
{ path: '/surface-pro-816', component: SurfacePro816, name: 'surface-pro-816' },
|
|
];
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(),
|
|
routes,
|
|
});
|
|
|
|
export default router;
|
|
|