export default [ { title: '基础步骤条', screenshot: '', schema: { componentName: 'PisellSteps', props: { current: 1, items: [ { title: '已完成', description: '这是一条描述信息', }, { title: '进行中', description: '这是一条描述信息', }, { title: '等待中', description: '这是一条描述信息', }, ], }, }, }, { title: '点状步骤条', screenshot: '', schema: { componentName: 'PisellSteps', props: { type: 'dot', current: 1, items: [ { title: '已完成', description: '这是一条描述', }, { title: '进行中', description: '这是一条描述', }, { title: '等待中', description: '这是一条描述', }, ], }, }, }, { title: '竖向步骤条', screenshot: '', schema: { componentName: 'PisellSteps', props: { direction: 'vertical', current: 1, items: [ { title: '已完成', description: '这是一条描述信息', }, { title: '进行中', description: '这是一条描述信息', }, { title: '等待中', description: '这是一条描述信息', }, ], }, }, }, { title: '导航步骤条', screenshot: '', schema: { componentName: 'PisellSteps', props: { type: 'navigation', current: 1, items: [ { title: '步骤1', description: '描述1', }, { title: '步骤2', description: '描述2', }, { title: '步骤3', description: '描述3', }, ], }, }, }, { title: '小尺寸步骤条', screenshot: '', schema: { componentName: 'PisellSteps', props: { size: 'small', current: 1, items: [ { title: '已完成' }, { title: '进行中' }, { title: '等待中' }, ], }, }, }, ];