naive-ui/demo/documentation/components/button/enUS/shape.md

25 lines
378 B
Markdown
Raw Normal View History

2019-09-21 17:03:05 +08:00
# Shape
Button has different shapes.
```html
2019-10-24 18:04:31 +08:00
<n-button circle>
<template v-slot:icon>
<md-save />
</template>
</n-button>
2019-09-21 17:03:05 +08:00
<n-button type="primary" round>Primary</n-button>
<n-button type="info">Info</n-button>
```
2019-10-24 18:04:31 +08:00
```js
2019-10-25 12:48:10 +08:00
import mdSave from 'naive-ui/lib/icons/md-save'
2019-10-24 18:04:31 +08:00
export default {
components: {
mdSave
}
}
```
2019-09-21 17:03:05 +08:00
```css
.n-button {
margin: 0 8px 8px 0;
}
```