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

28 lines
756 B
Markdown

<cn>
#### ๆŒ‰้’ฎ็ฑปๅž‹
ๆŒ‰้’ฎๆœ‰ๅ››็ง็ฑปๅž‹๏ผšไธปๆŒ‰้’ฎใ€ๆฌกๆŒ‰้’ฎใ€่™š็บฟๆŒ‰้’ฎใ€ๅฑ้™ฉๆŒ‰้’ฎๅ’Œ้“พๆŽฅๆŒ‰้’ฎใ€‚ไธปๆŒ‰้’ฎๅœจๅŒไธ€ไธชๆ“ไฝœๅŒบๅŸŸๆœ€ๅคšๅ‡บ็Žฐไธ€ๆฌกใ€‚
</cn>
<us>
#### Type
There are `primary` button, `default` button, `dashed` button and `danger` button and `link` button in antd.
</us>
```html
<template>
<div>
<a-button type="primary">Primary</a-button>
<a-button>Default</a-button>
<a-button type="dashed">Dashed</a-button>
<a-button type="danger">Danger</a-button>
<a-config-provider :autoInsertSpaceInButton="false">
<a-button type="primary">ๆŒ‰้’ฎ</a-button>
</a-config-provider>
<a-button type="primary">ๆŒ‰้’ฎ</a-button>
<a-button type="link">Link</a-button>
</div>
</template>
```