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

26 lines
527 B
Vue
Raw Normal View History

2017-11-21 11:15:41 +00:00
<template>
2017-12-01 04:21:43 +00:00
<Tabs defaultActiveKey="1" @change="callback">
<TabPane tab="Tab 1" tabKey="1">Content of Tab Pane 1</TabPane>
2017-12-01 11:02:01 +00:00
<TabPane tab="Tab 2" tabKey="2" forceRender>Content of Tab Pane 2</TabPane>
2017-12-01 04:21:43 +00:00
<TabPane tab="Tab 3" tabKey="3">Content of Tab Pane 3</TabPane>
</Tabs>
2017-11-21 11:15:41 +00:00
</template>
<script>
import { Tabs } from 'antd'
export default {
2017-11-22 07:05:53 +00:00
data () {
return {
}
},
methods: {
2017-12-01 04:21:43 +00:00
callback (key) {
console.log(key)
2017-11-22 07:05:53 +00:00
},
},
2017-11-21 11:15:41 +00:00
components: {
Tabs,
TabPane: Tabs.TabPane,
},
}
</script>