amis2/examples/components/Tabs/Tab2.jsx

36 lines
644 B
React
Raw Normal View History

2019-04-30 11:11:25 +08:00
export default {
2019-11-07 10:41:14 +08:00
type: 'page',
title: '选项卡2页面',
body: [
'<p>也可以多个页面,利用导航<code>nav</code>渲染期模拟 tabs 的效果。</p>',
2019-04-30 11:11:25 +08:00
2019-11-07 10:41:14 +08:00
{
type: 'nav',
links: [
2019-04-30 11:11:25 +08:00
{
2019-11-07 10:41:14 +08:00
label: '选项卡1',
icon: 'fa fa-cloud',
to: './tab1'
},
2019-04-30 11:11:25 +08:00
2019-11-07 10:41:14 +08:00
{
label: '选项卡2',
to: './tab2'
2019-04-30 11:11:25 +08:00
},
{
2019-11-07 10:41:14 +08:00
label: '选项卡3',
icon: 'fa fa-youtube',
to: './tab3'
2019-04-30 11:11:25 +08:00
}
2019-11-07 10:41:14 +08:00
]
},
{
type: 'wrapper',
className: 'wrapper bg-white b-l b-b b-r',
body: '选项卡2的内容'
}
]
};