ant-design-vue/components/button/demo/multiple.vue

18 lines
364 B
Vue
Raw Normal View History

2017-11-03 10:46:18 +00:00
// TODO: 依赖组件开发中
<template>
<div>
<AntButton type="primary">Primary</AntButton>
<AntButton>Default</AntButton>
<AntButton type="dashed">Dashed</AntButton>
<AntButton type="danger">Danger</AntButton>
</div>
</template>
<script>
import { Button } from 'antd'
export default {
components: {
AntButton: Button,
},
}
</script>