You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
17 lines
430 B
7 years ago
|
<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>
|