Link 链接

文字超链接

基础用法

基础的文字链接用法。

Link 链接 - 图1

  1. <template>
  2. <div>
  3. <el-link href="https://element.eleme.io" target="_blank">default</el-link>
  4. <el-link type="primary">primary</el-link>
  5. <el-link type="success">success</el-link>
  6. <el-link type="warning">warning</el-link>
  7. <el-link type="danger">danger</el-link>
  8. <el-link type="info">info</el-link>
  9. </div>
  10. </template>
  11. <style scoped>
  12. .el-link {
  13. margin-right: 8px;
  14. }
  15. .el-link .el-icon--right.el-icon {
  16. vertical-align: text-bottom;
  17. }
  18. </style>

禁用状态

文字链接不可用状态。

Link 链接 - 图2

  1. <template>
  2. <div>
  3. <el-link disabled>default</el-link>
  4. <el-link type="primary" disabled>primary</el-link>
  5. <el-link type="success" disabled>success</el-link>
  6. <el-link type="warning" disabled>warning</el-link>
  7. <el-link type="danger" disabled>danger</el-link>
  8. <el-link type="info" disabled>info</el-link>
  9. </div>
  10. </template>
  11. <style scoped>
  12. .el-link {
  13. margin-right: 8px;
  14. }
  15. .el-link .el-icon--right.el-icon {
  16. vertical-align: text-bottom;
  17. }
  18. </style>

下划线

文字链接下划线。

Link 链接 - 图3

  1. <template>
  2. <div>
  3. <el-link :underline="false">Without Underline</el-link>
  4. <el-link>With Underline</el-link>
  5. </div>
  6. </template>
  7. <style scoped>
  8. .el-link {
  9. margin-right: 8px;
  10. }
  11. .el-link .el-icon--right.el-icon {
  12. vertical-align: text-bottom;
  13. }
  14. </style>

图标

带图标的链接

TIP

使用 icon 属性来为按钮添加图标。 您可以传递组件名称的字符串(提前注册)或组件本身是一个 SVG Vue 组件。 Element Plus 提供了一组图标,您可以在 icon component

Link 链接 - 图4

  1. <template>
  2. <div>
  3. <el-link :icon="Edit">Edit</el-link>
  4. <el-link>
  5. Check<el-icon class="el-icon--right"><icon-view /></el-icon>
  6. </el-link>
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. import { Edit, View as IconView } from '@element-plus/icons-vue'
  11. </script>
  12. <style scoped>
  13. .el-link {
  14. margin-right: 8px;
  15. }
  16. </style>

属性

属性说明类型可选值默认值
type类型stringprimary / success / warning / danger / info / defaultdefault
underline是否下划线booleantrue
disabled是否禁用状态booleanfalse
href原生 href 属性string-
icon图标组件string | Component-

插槽

插槽名说明
自定义默认内容
icon自定义图标组件

源代码

组件 Link 链接 - 图5 文档 Link 链接 - 图6

贡献者

Link 链接 - 图7 三咲智子

Link 链接 - 图8 云游君

Link 链接 - 图9 jeremywu

Link 链接 - 图10 zz

Link 链接 - 图11 Aex

Link 链接 - 图12 Faizal Andyka

Link 链接 - 图13 kooriookami

Link 链接 - 图14 on the field of hope

Link 链接 - 图15 Hades-li

Link 链接 - 图16 C.Y.Kun

Link 链接 - 图17 MonsterPi

Link 链接 - 图18 류한경

Link 链接 - 图19 qiang