1234567891011121314151617 |
- import { createRouter, createWebHistory } from "vue-router";
- const routes = [
- {
- path: "/",
- name: "home",
- component: () =>
- import(/* webpackChunkName: "about" */ "../views/queue.vue"),
- },
- ];
- const router = createRouter({
- history: createWebHistory(process.env.BASE_URL),
- routes,
- });
- export default router;
|