首页 > TAG信息列表 > addRoute

Vue3 引入路由 【Vue专栏】

router.js文件 目录结构如下,注意这个404重定向,vue3不支持直接使用“*”匹配所有路由了,要使用:catchAll(.*) import {createRouter, createWebHashHistory} from "vue-router"; const routes = [ { path: "/", component: () => import("../views/HomePage.

Vue3项目运行时报错误:TypeError:router.addRouters is not a function

router.addRouters()方法报错:Uncaught (in promise) TypeError: router.default.addRouters is not a function。   原因分析: 新版VueRouter废除了addRoutes();//添加的数组 改为addRoute(RouteRecordRaw);//添加的为对象   解决办法: 原代码为: const routers = store.getters.a