underline.vue 264 B

1234567891011121314
  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>