ant-design-vue/components/vc-tabs/src/TabBar.jsx

26 lines
474 B
Vue
Raw Normal View History

2018-03-19 02:16:27 +00:00
2017-11-22 07:05:53 +00:00
import TabBarMixin from './TabBarMixin'
2018-01-12 09:06:01 +00:00
import BaseMixin from '../../_util/BaseMixin'
2017-11-21 11:15:41 +00:00
export default {
2018-01-12 09:06:01 +00:00
mixins: [TabBarMixin, BaseMixin],
2017-11-21 11:15:41 +00:00
name: 'TabBar',
props: {
prefixCls: {
default: 'ant-tabs',
type: String,
},
tabBarPosition: {
default: 'top',
2017-11-22 07:05:53 +00:00
type: String,
2017-11-21 11:15:41 +00:00
},
disabled: Boolean,
2017-11-22 07:05:53 +00:00
activeKey: String,
panels: Array,
2017-11-21 11:15:41 +00:00
},
2017-12-01 04:21:43 +00:00
render (h) {
const tabs = this.getTabs(h)
return this.getRootNode(tabs, h)
2017-11-21 11:15:41 +00:00
},
}
2018-03-19 02:16:27 +00:00