i18n.ts 173 B

123456
  1. import { flow } from "fp-ts/function"
  2. import { useI18n as _useI18n } from "vue-i18n"
  3. export const useI18n = flow(_useI18n, (x) => x.t)
  4. export const useFullI18n = _useI18n