vue-vben-admin/src/components/Cropper/index.ts

8 lines
281 B
TypeScript
Raw Normal View History

import { withInstall } from '@/utils';
2021-06-10 21:46:46 +08:00
import cropperImage from './src/Cropper.vue';
import avatarCropper from './src/CropperAvatar.vue';
2021-03-29 22:48:13 +08:00
2021-06-10 21:46:46 +08:00
export * from './src/typing';
export const CropperImage = withInstall(cropperImage);
export const CropperAvatar = withInstall(avatarCropper);