import { createRouter, createWebHashHistory } from 'vue-router'
import HomeView from '@/views/HomeView.vue'
const routes = [
{ path: '/:sessionId?', component: HomeView },
]
export const router = createRouter({
history: createWebHashHistory(),
routes,
})