mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
19 lines
473 B
Vue
19 lines
473 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;
|
|
}
|
|
.el-link .el-icon--right.el-icon {
|
|
vertical-align: text-bottom;
|
|
}
|
|
</style>
|