amitesh11's picture
Upload 3019 files
369fac9 verified
raw
history blame contribute delete
578 Bytes
import { createRouter, createWebHistory } from "vue-router";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: "/",
name: "Home",
component: () => import("../views/Home.vue"),
},
{
path: "/video",
name: "VideoStreaming",
component: () => import("../views/VideoStreaming.vue"),
},
{
path: "/:pathMatch(.*)*",
redirect: { name: "Home" },
},
],
});
export default router;