vue项目根据url语言配置国际化

url .../en/xxx .../fr/xxx
像这种url怎么在router里配置
现在的router是这样的
目前了解到可以在beforeRouterEnter设置i18n状态,但是应该怎么从url上获取到语言参数
`
new Router({

base: "/",

mode: 'history',

routes: [

{

base: "/",

mode: 'history',

routes: [

{

path: '/',

name: 'Base',

component: Base,

children: [

{

path: '/',

name: 'home',

component: home

},

]

}

]

}

]

})
`

配置路由的时候
{
path: '.../:lang/xxx'
}

vue项目根据url语言配置国际化

回答

以上是 vue项目根据url语言配置国际化 的全部内容, 来源链接: utcz.com/a/112942.html

回到顶部