1234567891011121314151617 |
- /*
- * @Author: wjc
- * @Date: 2024-06-05 15:57:41
- * @LastEditors: wjc
- * @LastEditTime: 2024-07-12 16:44:10
- * @Description:
- */
- /// <reference types='@dcloudio/types' />
- import 'vue'
- declare module '@vue/runtime-core' {
- type Hooks = App.AppInstance & Page.PageInstance
- interface ComponentCustomOptions extends Hooks {}
- interface ComponentCustomProperties {
- $tt?: (template: string, data?: any) => string
- }
- }
|