export default [ { title: '评分', screenshot: '', schema: { componentName: 'PisellRating', props: { mode: 'edit', defaultValue: 0, }, }, }, { title: '半星评分', screenshot: '', schema: { componentName: 'PisellRating', props: { mode: 'edit', defaultValue: 0, allowHalf: true, }, }, }, { title: '评分展示', screenshot: '', schema: { componentName: 'PisellRating', props: { mode: 'read', value: 4.5, allowHalf: true, showValue: true, }, }, }, ];