mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
26 lines
527 B
Vue
26 lines
527 B
Vue
<template>
|
|
<Tabs defaultActiveKey="1" @change="callback">
|
|
<TabPane tab="Tab 1" tabKey="1">Content of Tab Pane 1</TabPane>
|
|
<TabPane tab="Tab 2" tabKey="2" forceRender>Content of Tab Pane 2</TabPane>
|
|
<TabPane tab="Tab 3" tabKey="3">Content of Tab Pane 3</TabPane>
|
|
</Tabs>
|
|
</template>
|
|
<script>
|
|
import { Tabs } from 'antd'
|
|
export default {
|
|
data () {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
callback (key) {
|
|
console.log(key)
|
|
},
|
|
},
|
|
components: {
|
|
Tabs,
|
|
TabPane: Tabs.TabPane,
|
|
},
|
|
}
|
|
</script>
|