26 lines
474 B
Vue
26 lines
474 B
Vue
|
|
||
|
import TabBarMixin from './TabBarMixin'
|
||
|
import BaseMixin from '../../_util/BaseMixin'
|
||
|
export default {
|
||
|
mixins: [TabBarMixin, BaseMixin],
|
||
|
name: 'TabBar',
|
||
|
props: {
|
||
|
prefixCls: {
|
||
|
default: 'ant-tabs',
|
||
|
type: String,
|
||
|
},
|
||
|
tabBarPosition: {
|
||
|
default: 'top',
|
||
|
type: String,
|
||
|
},
|
||
|
disabled: Boolean,
|
||
|
activeKey: String,
|
||
|
panels: Array,
|
||
|
},
|
||
|
render (h) {
|
||
|
const tabs = this.getTabs(h)
|
||
|
return this.getRootNode(tabs, h)
|
||
|
},
|
||
|
}
|
||
|
|