赞
踩
实现传入变量,做对应的国际化
export default {
"my.ll": "你好,我是{name},性别:{sex}"
}
export default {
"my.ll": "Hello, I am {name},sex:{sex}"
}
Vue组件中使用如下:
<p>{{$t('my.ll', {name:'123',sex:'666'})}}</p>
<template>
<div>
<span>Hello,</span>
<i18n path="my.ll" :tag="false">
<template slot="name">
<span style="color:red">1231</span>
</template>
<template slot="sex">
<span style="color:red">888</span>
</template>
</i18n>
</div>
</template>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。