guci-date
Version:
A golden bottle of sake costs ten thousand yuan, and a jade plate costs ten thousand yuan.
19 lines (13 loc) • 329 B
JavaScript
import Vue from "vue";
import GuciI18n from "vue-i18n";
Vue.use(GuciI18n);
import { zh } from "../i18n/zh";
import { en } from "../i18n/en";
export const GuciLan = new GuciI18n({
locale: localStorage.getItem("locale") || "zh",
messages: {
en:{ en },
zh:{ zh }
}
});
export default GuciLan;