@wfrog/vc
Version:
vue3 组件库 vc
13 lines (12 loc) • 380 B
TypeScript
import { default as ICropper } from 'cropperjs';
export interface ICropperProps {
dialog?: boolean;
visible?: boolean;
image?: HTMLImageElement | string | File;
option?: ICropper.Options;
imageSmoothingQuality?: ICropper.ImageSmoothingQuality;
containerWidth?: string;
containerHeight?: string;
cropperWidth?: number;
cropperHeight?: number;
}