用AI赚第一桶💰低成本搭建一套AI赚钱工具,源码可二开。 广告
[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> ```