naive-ui/demo/documentation/components/button/zhCN/text.md

44 lines
814 B
Markdown
Raw Normal View History

2019-12-31 17:15:55 +08:00
# 文本按钮
```html
<n-button text size="large">
<template v-slot:icon>
<n-icon>
<cash-outline />
</n-icon>
</template>
Default
</n-button>
<n-button text type="primary" ghost size="large">
<template v-slot:icon>
<n-icon>
<cash-outline />
</n-icon>
</template>
</n-button>
<n-button text type="info" loading size="small">Info</n-button>
2019-12-31 17:15:55 +08:00
<n-button text type="success">Success</n-button>
<n-button text type="warning">Warning</n-button>
<n-button text type="error" icon-placement="right">
<template v-slot:icon>
<n-icon>
<cash-outline />
</n-icon>
</template>
Error
</n-button>
```
```js
import cashOutline from 'naive-ui/lib/icons/cash-outline'
export default {
components: {
cashOutline
}
}
2019-12-31 17:15:55 +08:00
```
```css
.n-button {
margin: 0 12px 8px 0;
2019-12-31 17:15:55 +08:00
}
```