UNPKG

taro-ui-vue3

Version:

Taro UI Rewritten in Vue 3.0

36 lines (31 loc) 538 B
import AtComponent from './base' export interface Item { /** * 标题 */ title: string /** * 子项内容 */ content?: string[] /** * 自定义 icon */ icon?: string /** * icon 颜色 * @default 'blue' */ color?: 'blue' | 'green' | 'red' | 'yellow' } export interface AtTimelineProps extends AtComponent { /** * 最后一项是否为未完成态 * @default false */ pending?: boolean /** * 需展示的内容 */ items: Array<Item> }