综上所述,Vue 2对应的vue-router版本是3.x.x,其中最新且稳定的版本是3.6.5。
使用的vue-loader 版本过高(16.x) 降级为15.x 版本即可
(3)vue3项目中封装的组件内 data和props不要存在同名属性 否则会出现覆盖现象(vue2中尽量也不要这么写) (1)路由使用更新 ①路由使用方法 import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router' const routes: Array<RouteRecordRaw> =[] const router = createRouter({ history: creat...