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

17 lines
333 B
Vue
Raw Normal View History

2017-11-03 04:04:39 +00:00
<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>