naive-ui/demo/loaders/test/basic.test.md

18 lines
406 B
Markdown
Raw Normal View History

2019-09-20 00:27:06 +08:00
# Basic
There are `default`, `primary`, `info`, `success`, `warning` and `error` type of button
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-12-22 23:19:08 +08:00
```
```js
const a = 1
```
```css
.test {
height: 100px;
}
2019-09-17 19:24:39 +08:00
```