VUE CLI3路由重定向

vue cli3 的重定向无非就是使用redirect来实现

const routes = [     {path:"/", name:"base",redirect:{name:"ResourceHome"}},     {path:"/new", component:ResourceNew,   children:[     {path:"",component:ResourceName},     {path:"other"component:RespourceOther}   ]  }, ]     //创建路由     const router = createRouter({         history:createWebHistory(),         //第一个router是参数,第二个routes是配置路由中的routes,可以只写一个routes         routes     });
其他的方式引入是不变的,该引入的还是需要进行一次引入
上一篇:vue-cli3打包去掉console.log


下一篇:vue cli3如何引入全局less变量