i18n-helpers.ts 307 B

12345678910
  1. import type { App } from 'vue'
  2. import { formatTextWithBreaks, tWithBreaks } from '@/locale/index'
  3. export default {
  4. install(app: App) {
  5. // 注册全局方法
  6. app.config.globalProperties.$tWithBreaks = tWithBreaks
  7. app.config.globalProperties.$formatTextWithBreaks = formatTextWithBreaks
  8. },
  9. }