i18n.ts 145 B

1234567
  1. // 国际化
  2. import i18n from "@/lang/index";
  3. import type { App } from "vue";
  4. export function setupI18n(app: App<Element>) {
  5. app.use(i18n);
  6. }