2019-12-08 17:21:44 +08:00
|
|
|
# Text Button
|
|
|
|
```html
|
2020-02-29 18:09:22 +08:00
|
|
|
<n-button text size="large">
|
|
|
|
<template v-slot:icon>
|
|
|
|
<n-icon>
|
|
|
|
<cash-outline />
|
|
|
|
</n-icon>
|
|
|
|
</template>
|
|
|
|
Default
|
|
|
|
</n-button>
|
|
|
|
<br />
|
|
|
|
<n-button text type="primary" ghost size="large">
|
|
|
|
<template v-slot:icon>
|
|
|
|
<n-icon>
|
|
|
|
<cash-outline />
|
|
|
|
</n-icon>
|
|
|
|
</template>
|
|
|
|
</n-button>
|
|
|
|
<br />
|
|
|
|
<n-button text type="info" loading size="small">Info</n-button>
|
|
|
|
<br />
|
2019-12-08 17:21:44 +08:00
|
|
|
<n-button text type="success">Success</n-button>
|
2020-02-29 18:09:22 +08:00
|
|
|
<br />
|
2019-12-08 17:21:44 +08:00
|
|
|
<n-button text type="warning">Warning</n-button>
|
2020-02-29 18:09:22 +08:00
|
|
|
<br />
|
|
|
|
<n-button text type="error" icon-placement="right">
|
|
|
|
<template v-slot:icon>
|
|
|
|
<n-icon>
|
|
|
|
<cash-outline />
|
|
|
|
</n-icon>
|
|
|
|
</template>
|
|
|
|
Error
|
|
|
|
</n-button>
|
|
|
|
<br />
|
|
|
|
```
|
|
|
|
```js
|
|
|
|
import cashOutline from 'naive-ui/lib/icons/cash-outline'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
cashOutline
|
|
|
|
}
|
|
|
|
}
|
2019-12-08 17:21:44 +08:00
|
|
|
```
|
|
|
|
```css
|
|
|
|
.n-button {
|
|
|
|
margin: 0 8px 8px 0;
|
|
|
|
}
|
2020-02-29 18:09:22 +08:00
|
|
|
```
|