ptSend/view/src/router/index.js
2023-07-04 21:38:26 +08:00

33 lines
775 B
JavaScript

import {createRouter, createWebHashHistory} from "vue-router";
const routes = [
{
path: "/",
children: [
{
path: "downloadTest",
name: "downloadTest",
component: () => import("../page/test/downloadTest.vue")
},
{
path: "medaInfoTest",
name: "medaInfoTest",
component: () => import("../page/test/getMediaInfoTest.vue")
},
{
path:"addVideo",
component: ()=>import("../page/addVideo.vue")
}
],
component: () => import("../page/index.vue"),
},
]
export const router = createRouter({
history: createWebHashHistory(),
routes
})