chore: OXC Formatter

This commit is contained in:
skytek_xinliang
2026-08-13 15:41:12 +08:00
parent 5377b872d8
commit 8f5fa15d3a
40 changed files with 2392 additions and 3009 deletions
+7 -7
View File
@@ -1,21 +1,21 @@
import { createI18n } from 'vue-i18n'
import { createI18n } from "vue-i18n";
const messages = {
en: {
message: {
hello: 'hello world',
hello: "hello world",
},
},
ja: {
message: {
hello: 'こんにちは、世界',
hello: "こんにちは、世界",
},
},
}
};
export default createI18n({
legacy: false,
locale: 'en',
fallbackLocale: 'en',
locale: "en",
fallbackLocale: "en",
messages,
})
});