遇到的问题
vue-router 使用需要添加多余参数(默认params 参数) 会有ts提示
1 | 不能将类型“{ name: string; path: string; params: { type: number; }; meta: { title: string; hidden: false; keepAlive: true; }; component: () => Promise<typeof import("*.vue")>; }”分配给类型“RouteRecordRaw”。 |
解决方式
在src下新建vue-router.d.ts
1 | import { _RouteRecordBase } from 'vue-router' |