UNPKG

wetrade-design

Version:

一款多语言支持Vue3的UI框架

12 lines (11 loc) 272 B
import type { FunctionalComponent } from 'vue'; export interface RowProps { prefixCls: string; vertical: boolean; row: any[]; bordered: boolean; colon: boolean; index: number; } declare const Row: FunctionalComponent<RowProps>; export default Row;