@wfrog/vc
Version:
vue3 组件库 vc
17 lines (16 loc) • 435 B
TypeScript
import { Placement, PopperEffect } from 'element-plus/es/components/popper';
export interface IImageProps {
type?: 'image' | 'text';
text?: string;
src?: string;
previewSrcList?: string[];
width?: string;
height?: string;
fit?: IGlobal.ImageFit;
textMaxWidth?: number;
showTooltip?: boolean;
effect?: PopperEffect;
placement?: Placement;
popperClass?: string;
enterable?: boolean;
}