mt-ui-components-vue3
Version:
玛果添实UI组件库(Vue3)
11 lines • 382 B
JavaScript
import Image from "ant-design-vue/es/image/index";
import ImagePreviewGroup from "ant-design-vue/es/image/PreviewGroup";
Image.name = 'JBadge';
ImagePreviewGroup.name = 'JBadgeRibbon';
Image.install = function (app) {
app.component(Image.name, Image);
app.component(ImagePreviewGroup.name, ImagePreviewGroup);
return app;
};
export default Image;
export { ImagePreviewGroup };