export default [ { title: '胶囊选项卡', screenshot: require('../../assets/capsule-tabs.jpg'), schema: { componentName: 'AMCapsuleTabs', props: {}, children: [ { componentName: 'AMCapsuleTabs.Tab', props: { key: 'fruits', title: '水果', children: { type: 'JSSlot', value: [ { componentName: 'AMDiv', props: { style: { height: '200px', }, children: '这是一篮子水果', }, }, ], }, }, }, { componentName: 'AMCapsuleTabs.Tab', props: { key: 'vegetables', title: '蔬菜', children: { type: 'JSSlot', value: [ { componentName: 'AMDiv', props: { style: { height: '200px', }, children: '这是一篮子蔬菜', }, }, ], }, }, }, { componentName: 'AMCapsuleTabs.Tab', props: { key: 'animals', title: '动物', children: { type: 'JSSlot', value: [ { componentName: 'AMDiv', props: { style: { height: '200px', }, children: '这是一栏猪', }, }, ], }, }, }, ], }, }, ];