vue路由单个网址,不带/
我想在/(相对网址)后加上整整
我希望在不更改基本URL的情况下将表单组件路由到另一个组件,如果基本URL是'/',这意味着我想在不更改url的情况下从组件一路由到组件二
export default new Router({
mode: "history",
routes: [
{
path: "/",
name: "one",
component: () => import("@/components/Three")
// component: () => import("@/components/NoteMaser")
},
{
path: "/",
name: "two",
component: () => import("@/components/Two")
}
]
});