i18n.ts 135 B

123456
  1. import I18n from "@/languages/index";
  2. // 直接使用全局实例
  3. export const t = (key: string) => {
  4. return I18n.global.t(key);
  5. };