i18n.js 294 B

12345678910
  1. import { translate } from "@/i18n";
  2. import store from "@/store";
  3. export default {
  4. install(app) {
  5. app.config.globalProperties.$store = store;
  6. app.config.globalProperties.$t = (key, params) =>
  7. translate(key, params, store.state.locale?.locale || "zh");
  8. },
  9. };