export default [ { title: '栅格视图', schema: { componentName: 'PisellViewGrid', props: { dataSource: [ { id: 1, text: "Racing car sprays burning fuel into crowd.", }, { id: 2, text: "Japanese princess to wed commoner.", }, { id: 3, text: "Australian walks 100km after outback crash.", }, { id: 4, text: "Man charged over missing wedding girl.", }, { id: 5, text: "Los Angeles battles huge wildfires.", }, ], columns: 3, horizontalGap: 10, verticalGap: 10, renderItem: { type: "JSSlot", params: ["item"], value: [ { componentName: "List.Item", props: {}, children: { componentName: "Typography.Text", props: { children: { type: "JSExpression", value: "this.item.text", }, }, }, }, ], }, }, }, }, ];