mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +08:00
24 lines
593 B
Vue
24 lines
593 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<AntButton type="primary">Primary</AntButton>
|
||
|
<AntButton type="primary" disabled>Primary(disabled)</AntButton>
|
||
|
<br />
|
||
|
<AntButton>Default</AntButton>
|
||
|
<AntButton disabled>Default(disabled)</AntButton>
|
||
|
<br />
|
||
|
<AntButton>Ghost</AntButton>
|
||
|
<AntButton disabled>Ghost(disabled)</AntButton>
|
||
|
<br />
|
||
|
<AntButton type="dashed">Dashed</AntButton>
|
||
|
<AntButton type="dashed" disabled>Dashed(disabled)</AntButton>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { Button } from 'antd'
|
||
|
export default {
|
||
|
components: {
|
||
|
AntButton: Button,
|
||
|
},
|
||
|
}
|
||
|
</script>
|