@aplus-frontend/ui
Version:
18 lines (17 loc) • 431 B
TypeScript
import { VNode } from 'vue';
export interface ApProductInfoProps {
imgSrc?: string;
preview?: boolean;
title?: string;
values?: ApProductInfoValue[];
disableCopy?: boolean;
showImg?: boolean;
}
export interface ApProductInfoValue {
label?: string;
link?: string;
col?: number;
value?: string | number | VNode | (() => VNode);
helpMessage?: string | VNode;
toolTipBgColor?: string;
}