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.
 
 
 
 

20 lines
466 B

import type { RouteRecordRaw } from 'vue-router'
const homeRoute:Array<RouteRecordRaw>=[
{
path: "/",
name: "home",
component: () => import("@/components/blogs/HomePage.vue"),
},
{
path: "/login",
name: "login",
component: () => import("@/components/admin/SignIn.vue"),
},
{
path:"/ceshi",
name:"ceshi",
component:()=>import("@/components/blogs/ceshi.vue")
}
]
export default homeRoute