chore: 升级 monorepo 架构

This commit is contained in:
就眠儀式
2022-04-05 10:31:31 +08:00
parent 436fd407ca
commit c7f8998376
659 changed files with 13598 additions and 1039 deletions

View File

@@ -0,0 +1,14 @@
import { createI18n } from "vue-i18n";
import zh_CN from "./locales/zh_CN";
import en_US from "./locales/en_US";
const i18n = createI18n({
legacy: false,
locale: "en_US",
messages: {
zh_CN: zh_CN,
en_US: en_US,
},
});
export default i18n;

View File

@@ -0,0 +1,9 @@
export default {
input: {
hello: "hello world",
},
page: {
prev: "prev",
next: "next",
},
};

View File

@@ -0,0 +1,9 @@
export default {
input: {
hello: "你好世界",
},
page: {
prev: "上一页",
next: "下一页",
},
};