mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
25 lines
378 B
Markdown
25 lines
378 B
Markdown
# Shape
|
|
Button has different shapes.
|
|
```html
|
|
<n-button circle>
|
|
<template v-slot:icon>
|
|
<md-save />
|
|
</template>
|
|
</n-button>
|
|
<n-button type="primary" round>Primary</n-button>
|
|
<n-button type="info">Info</n-button>
|
|
```
|
|
```js
|
|
import mdSave from 'naive-ui/lib/icons/md-save'
|
|
|
|
export default {
|
|
components: {
|
|
mdSave
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 8px 8px 0;
|
|
}
|
|
``` |