2019-09-21 17:03:05 +08:00
|
|
|
# 基础
|
2019-09-22 22:59:29 +08:00
|
|
|
按钮的 `type` 分别为 `default`、`primary`、`info`、`success`、`warning` 和 `error`。
|
2019-09-17 19:24:39 +08:00
|
|
|
```html
|
2019-09-20 00:27:06 +08:00
|
|
|
<n-button>Default</n-button>
|
|
|
|
<n-button type="primary">Primary</n-button>
|
|
|
|
<n-button type="info">Info</n-button>
|
|
|
|
<n-button type="success">Success</n-button>
|
|
|
|
<n-button type="warning">Warning</n-button>
|
|
|
|
<n-button type="error">Error</n-button>
|
2019-09-17 19:24:39 +08:00
|
|
|
```
|
|
|
|
```css
|
|
|
|
.n-button {
|
2019-09-20 00:27:06 +08:00
|
|
|
margin: 0 8px 8px 0;
|
2019-09-18 19:11:27 +08:00
|
|
|
}
|
2019-09-17 19:24:39 +08:00
|
|
|
```
|