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

18 lines
315 B
Vue
Raw Normal View History

2017-11-21 11:15:41 +00:00
<template>
<div>
<Tabs activeKey="test1">
<TabPane pKey="test1" tab="tab1">hello</TabPane>
<TabPane pKey="test2" tab="tab2">world</TabPane>
</Tabs>
</div>
</template>
<script>
import { Tabs } from 'antd'
export default {
components: {
Tabs,
TabPane: Tabs.TabPane,
},
}
</script>