mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +08:00
17 lines
430 B
Vue
17 lines
430 B
Vue
|
<template>
|
||
|
<div :style="{ background: 'rgb(190, 200, 200)', padding: '26px 16px 16px' }">
|
||
|
<AntButton type="primary" ghost>Primary</AntButton>
|
||
|
<AntButton ghost>Default</AntButton>
|
||
|
<AntButton type="dashed" ghost>Dashed</AntButton>
|
||
|
<AntButton type="danger" ghost>danger</AntButton>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { Button } from 'antd'
|
||
|
export default {
|
||
|
components: {
|
||
|
AntButton: Button,
|
||
|
},
|
||
|
}
|
||
|
</script>
|