mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
25 lines
354 B
Markdown
25 lines
354 B
Markdown
# Text Button
|
|
Somebody also calls it `link` button.
|
|
```html
|
|
<n-button
|
|
text
|
|
size="large"
|
|
>
|
|
<template v-slot:icon>
|
|
<n-icon>
|
|
<train-icon />
|
|
</n-icon>
|
|
</template>
|
|
The Engine is Still Spiting Smoke
|
|
</n-button>
|
|
```
|
|
```js
|
|
import TrainIcon from 'naive-ui/lib/icons/train-outline'
|
|
|
|
export default {
|
|
components: {
|
|
TrainIcon
|
|
}
|
|
}
|
|
```
|