/* prettier-ignore */ // GlobalComponents是vue3自带,用于扩展接口,给用户自定义全局组件补充类型提示 declare module 'vue' { export interface GlobalComponents { // 接口自动合并 GlobalComponents for Volar EpButtons: typeof import('el-plus')['EpButtons'] EpCustomColumn: typeof import('el-plus')['EpCustomColumn'] EpDatePickerRange: typeof import('el-plus')['EpDatePickerRange'] EpForm: typeof import('el-plus')['EpForm'] EpHeader: typeof import('el-plus')['EpHeader'] EpInput: typeof import('el-plus')['EpInput'] EpLink: typeof import('el-plus')['EpLink'] EpSearchListPage: typeof import('el-plus')['EpSearchListPage'] EpSelect: typeof import('el-plus')['EpSelect'] EpTable: typeof import('el-plus')['EpTable'] EpTitle: typeof import('el-plus')['EpTitle'] } } export {}