mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
21 lines
287 B
Vue
21 lines
287 B
Vue
<template>
|
|
<div>
|
|
<a-button><span>按钮</span></a-button>
|
|
<demo />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import demo from '../antdv-demo/docs/result/demo/index';
|
|
|
|
export default {
|
|
components: {
|
|
demo,
|
|
},
|
|
data() {
|
|
return {
|
|
current: ['mail'],
|
|
};
|
|
},
|
|
};
|
|
</script>
|