export default [ { title: '标签页', screenshot:require('../../assets/tabs.png'), schema: { componentName: 'AMTabs', props: { title: '标签页', }, children: [ { componentName: 'AMTabs.Tab', props: { key: 'fruits', title: '水果', children: { type: 'JSSlot', value: [ { componentName: 'AMDiv', props: { style: { height: '200px', }, children: '这是一篮子水果', }, }, ], }, }, }, { componentName: 'AMTabs.Tab', props: { key: 'vegetables', title: '蔬菜', children: { type: 'JSSlot', value: [ { componentName: 'AMDiv', props: { style: { height: '200px', }, children: '这是一篮子蔬菜', }, }, ], }, }, }, { componentName: 'AMTabs.Tab', props: { key: 'animals', title: '动物', children: { type: 'JSSlot', value: [ { componentName: 'AMDiv', props: { style: { height: '200px', }, children: '这是一群猪', }, }, ], }, }, }, ], }, }, ];