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

25 lines
352 B
Markdown
Raw Normal View History

2019-12-31 17:15:55 +08:00
# 文本按钮
2020-12-12 14:44:44 +08:00
有些人也会叫他 `link` 按钮。
2020-12-12 14:44:44 +08:00
2019-12-31 17:15:55 +08:00
```html
2020-12-12 14:44:44 +08:00
<n-button text size="large">
<template v-slot:icon>
<n-icon>
<train-icon />
</n-icon>
</template>
那车头依然吐着烟
</n-button>
```
2020-12-12 14:44:44 +08:00
```js
2020-11-07 00:07:02 +08:00
import { TrainOutline as TrainIcon } from '@vicons/ionicons-v5'
export default {
components: {
TrainIcon
}
}
2019-12-31 17:15:55 +08:00
```