1234567891011121314151617 |
- /*
- * @Author: wjc
- * @Date: 2024-06-05 15:57:41
- * @LastEditors: wjc
- * @LastEditTime: 2024-07-12 10:42:01
- * @Description:
- */
- /// <reference types='@dcloudio/types' />
- import 'vue'
- import { formatI18n } from '@/locale'
- declare module '@vue/runtime-core' {
- type Hooks = App.AppInstance & Page.PageInstance
- interface ComponentCustomOptions extends Hooks {
- $$t?: typeof formatI18n
- }
- }
|