@jaqi.l/jaqi-ui
Version:
Vue3 中基于Element-plus二次封装组件文档
18 lines (16 loc) • 502 B
TypeScript
// GlobalComponents for Volar
import JaqiSubmitConfirm from './lib/submitConfirm/index'
import JaqiDelConfirm from './lib/delConfirm/index'
import jaqiProTable from './lib/proTable/index'
declare module '@vue/runtime-core' {
// 组件
export interface GlobalComponents {
jaqiSubmitConfirm: typeof JaqiSubmitConfirm,
jaqiDelConfirm: typeof JaqiDelConfirm,
jaqiProTable: typeof jaqiProTable,
}
// 全局属性
interface ComponentCustomProperties {
}
}
export {}