16 lines
559 B
TypeScript
16 lines
559 B
TypeScript
import SvgIcon from '@/components/SvgIcon/index.vue'
|
|
import UploadImage from '@/components/ImageUpload.vue'
|
|
import UploadFile from '@/components/FileUpload'
|
|
import ImagePreview from '@/components/ImagePreview'
|
|
import DictTag from '@/components/DictTag'
|
|
import Dialog from '@/components/Dialog'
|
|
declare module '@vue/runtime-core' {
|
|
export interface GlobalComponents {
|
|
SvgIcon: typeof SvgIcon,
|
|
UploadImage: typeof UploadImage,
|
|
DictTag: typeof DictTag,
|
|
ImagePreview: typeof ImagePreview,
|
|
UploadFile: typeof UploadFile,
|
|
ZrDialog: typeof Dialog
|
|
}
|
|
} |