mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 03:08:21 +08:00
15 lines
264 B
Vue
15 lines
264 B
Vue
<template>
|
|
<div>
|
|
<el-link :underline="false">Without Underline</el-link>
|
|
<el-link>With Underline</el-link>
|
|
</div>
|
|
</template>
|
|
<style scoped>
|
|
.el-link {
|
|
margin-right: 8px;
|
|
}
|
|
.el-link .el-icon--right.el-icon {
|
|
vertical-align: text-bottom;
|
|
}
|
|
</style>
|