合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[TOC] ## i18n 安装 ``` yarn add vue-i18n ``` /src/plugins/i18n.ts ``` import zh from "../i18n/zh" import en from "../i18n/en" export default createI18n({ legacy: false, locale: 'zh', fallbackLocale: 'en', messages:{ zh, en, }, }) ``` 注册: src/plugins/index.ts ``` import i18n from "./i18n" export function registerPlugins (app: App) { app .use(i18n) } ``` 使用 ``` <p>{{ $t("message.hello") }}</p> ```