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>
|
2020-05-30 00:29:18 +08:00
|
|
|
<cash-outline />
|
2019-10-24 18:04:31 +08:00
|
|
|
</template>
|
|
|
|
</n-button>
|
2020-05-30 00:29:18 +08:00
|
|
|
<n-button round>Round</n-button>
|
|
|
|
<n-button>Rect</n-button>
|
2019-09-21 17:03:05 +08:00
|
|
|
```
|
2019-10-24 18:04:31 +08:00
|
|
|
```js
|
2020-05-30 00:29:18 +08:00
|
|
|
import cashOutline from 'naive-ui/lib/icons/cash-outline'
|
2019-10-24 18:04:31 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-05-30 00:29:18 +08:00
|
|
|
cashOutline
|
2019-10-24 18:04:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
2019-09-21 17:03:05 +08:00
|
|
|
```css
|
|
|
|
.n-button {
|
|
|
|
margin: 0 8px 8px 0;
|
|
|
|
}
|
|
|
|
```
|