扩展vue-router的meta的数据类型

356 阅读1分钟

以下代码放在路由的index.ts文件内

declare module 'vue-router' {  
    interface RouteMeta {  
        title?: string
        icon?: string
        // ...
    }  
}