Files
tekelanew_acs/acs/nladmin-ui/node_modules/vxe-pc-ui/es/image-preview/index.js

15 lines
577 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
import VxeImagePreviewComponent from '../image/src/preview';
import { VxeUI } from '@vxe-ui/core';
import { dynamicApp } from '../dynamics';
import { openPreviewImage } from '../image/src/util';
export const VxeImagePreview = Object.assign(VxeImagePreviewComponent, {
install(app) {
app.component(VxeImagePreviewComponent.name, VxeImagePreviewComponent);
VxeUI.previewImage = openPreviewImage;
}
});
dynamicApp.use(VxeImagePreview);
VxeUI.component(VxeImagePreviewComponent);
export const ImagePreview = VxeImagePreview;
export default VxeImagePreview;