mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-15 11:34:06 +08:00

* feat(components): [link] add `always-underline` option * docs(components): [link] update version tag * style(components): [link] remove redundant styles * feat(components): [link] control underline visibility timing * chore(components): [link] add `useDeprecated` function * chore(components): [link] remove TODO comments
15 lines
273 B
Vue
15 lines
273 B
Vue
<template>
|
|
<div>
|
|
<el-link>default</el-link>
|
|
<el-link underline="always">always</el-link>
|
|
<el-link underline="hover">hover</el-link>
|
|
<el-link underline="never">never</el-link>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.el-link {
|
|
margin-right: 8px;
|
|
}
|
|
</style>
|