2019-12-31 17:15:55 +08:00
|
|
|
# 文本按钮
|
2020-12-12 14:44:44 +08:00
|
|
|
|
2020-05-30 00:29:18 +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">
|
2020-02-29 18:09:22 +08:00
|
|
|
<template v-slot:icon>
|
|
|
|
<n-icon>
|
2020-10-26 12:28:38 +08:00
|
|
|
<train-icon />
|
2020-02-29 18:09:22 +08:00
|
|
|
</n-icon>
|
|
|
|
</template>
|
2020-05-30 00:29:18 +08:00
|
|
|
那车头依然吐着烟
|
2020-02-29 18:09:22 +08:00
|
|
|
</n-button>
|
|
|
|
```
|
2020-12-12 14:44:44 +08:00
|
|
|
|
2020-02-29 18:09:22 +08:00
|
|
|
```js
|
2020-11-07 00:07:02 +08:00
|
|
|
import { TrainOutline as TrainIcon } from '@vicons/ionicons-v5'
|
2020-02-29 18:09:22 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-10-26 12:28:38 +08:00
|
|
|
TrainIcon
|
2020-02-29 18:09:22 +08:00
|
|
|
}
|
|
|
|
}
|
2019-12-31 17:15:55 +08:00
|
|
|
```
|