You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ui/src/router.ts

38 lines
902 B

import { createRouter, createWebHistory } from 'vue-router'
import Home from './pages/Home.vue'
const routes = [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/scratch',
name: 'Scratch',
component: () => import(/* webpackChunkName: "scratch" */ './pages/Scratch.vue'),
},
{
path: '/editor',
name: 'Editor',
component: () => import(/* webpackChunkName: "Editor" */ './pages/Editor.vue'),
},
{
path: '/editor/:pageId',
component: () => import(/* webpackChunkName: "Editor" */ './pages/Editor.vue'),
},
{
path: '/listings',
name: 'Listings',
component: () => import(/* webpackChunkName: "Listings" */ './pages/Listings.vue'),
},
]
const router = createRouter({
history: createWebHistory(),
routes: routes,
})
export default router