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