1
0
Fork 0
forked from TWS/kalkutago
kalkutago/client/src/router.ts

13 lines
354 B
TypeScript
Raw Normal View History

2023-06-25 10:29:32 -04:00
import { createRouter, createWebHistory } from 'vue-router'
import TableView from './views/TableView.vue'
const router = createRouter({
history: createWebHistory(),
routes: [
{ path: '/', component: TableView }
// for other pages:
// {path: '/', component: import('./views/TableView.vue')}
]
})
export default router