2019-12-08 17:21:44 +08:00
|
|
|
# Text Button
|
2020-05-30 00:29:18 +08:00
|
|
|
Somebody also calls it `link` button.
|
2019-12-08 17:21:44 +08:00
|
|
|
```html
|
2020-05-30 00:29:18 +08:00
|
|
|
<n-button
|
|
|
|
text
|
|
|
|
size="large"
|
|
|
|
>
|
2020-02-29 18:09:22 +08:00
|
|
|
<template v-slot:icon>
|
|
|
|
<n-icon>
|
2020-05-30 00:29:18 +08:00
|
|
|
<train-outline />
|
2020-02-29 18:09:22 +08:00
|
|
|
</n-icon>
|
|
|
|
</template>
|
2020-05-30 00:29:18 +08:00
|
|
|
The Engine is Still Spiting Smoke
|
2020-02-29 18:09:22 +08:00
|
|
|
</n-button>
|
|
|
|
```
|
|
|
|
```js
|
2020-05-30 00:29:18 +08:00
|
|
|
import trainOutline from 'naive-ui/lib/icons/train-outline'
|
2020-02-29 18:09:22 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-05-30 00:29:18 +08:00
|
|
|
trainOutline
|
2020-02-29 18:09:22 +08:00
|
|
|
}
|
|
|
|
}
|
2019-12-08 17:21:44 +08:00
|
|
|
```
|
|
|
|
```css
|
|
|
|
.n-button {
|
2020-02-29 22:30:40 +08:00
|
|
|
margin: 0 12px 8px 0;
|
2019-12-08 17:21:44 +08:00
|
|
|
}
|
2020-02-29 18:09:22 +08:00
|
|
|
```
|