YBFACC / blog

仅记录个人学习使用
3 stars 0 forks source link

vue-router 刷新后无法再次命中 中文 路由 #50

Open YBFACC opened 5 months ago

YBFACC commented 5 months ago

主要是中文在路径中会转义

解决方法:alias 重命名下转义后的中文

const sRouters = createRouter({
    history: createWebHashHistory('/src/scene/'),
    routes: [
        {
            path: '/路由',
            alias: encodeURI('/路由'),
            component: Blank
        },
    ],
});