主要是中文在路径中会转义 解决方法:alias 重命名下转义后的中文 ```javascript const sRouters = createRouter({ history: createWebHashHistory('/src/scene/'), routes: [ { path: '/路由', alias: encodeURI('/路由'), component: Blank }, ], }); ```
主要是中文在路径中会转义
解决方法:alias 重命名下转义后的中文