国际化动态的,比如删除提示,是否删除XXX。

const messages = {
  en: {
    message: {
      hello: '{msg} world'
    }
  }
}
<p>{
   
   { $t('message.hello', { msg: 'hello' }) }}</p>

输出如下:

<p>hello world</p>

 格式化 | Vue I18n

猜你喜欢

转载自blog.csdn.net/qq_33769914/article/details/122812338