28 lines
756 B
Markdown
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>
|
|
```
|
|
|