mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +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
17 lines
406 B
Vue
17 lines
406 B
Vue
<template>
|
|
<div>
|
|
<el-link disabled>default</el-link>
|
|
<el-link type="primary" disabled>primary</el-link>
|
|
<el-link type="success" disabled>success</el-link>
|
|
<el-link type="warning" disabled>warning</el-link>
|
|
<el-link type="danger" disabled>danger</el-link>
|
|
<el-link type="info" disabled>info</el-link>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.el-link {
|
|
margin-right: 8px;
|
|
}
|
|
</style>
|