ant-design-vue/components/tabs/demo/size.vue

17 lines
380 B
Vue
Raw Normal View History

2017-12-01 10:48:16 +00:00
<template>
<Tabs defaultActiveKey="2" size="small">
2017-12-08 03:46:53 +00:00
<TabPane tab="Tab 1" key="1">Content of tab 1</TabPane>
<TabPane tab="Tab 2" key="2">Content of tab 2</TabPane>
<TabPane tab="Tab 3" key="3">Content of tab 3</TabPane>
2017-12-01 10:48:16 +00:00
</Tabs>
</template>
<script>
import { Tabs } from 'antd'
export default {
components: {
Tabs,
TabPane: Tabs.TabPane,
},
}
</script>