mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
6a2f327a79
Fix the link jump to elementui
19 lines
467 B
Vue
19 lines
467 B
Vue
<template>
|
|
<div>
|
|
<el-link href="https://element-plus.org" target="_blank">default</el-link>
|
|
<el-link type="primary">primary</el-link>
|
|
<el-link type="success">success</el-link>
|
|
<el-link type="warning">warning</el-link>
|
|
<el-link type="danger">danger</el-link>
|
|
<el-link type="info">info</el-link>
|
|
</div>
|
|
</template>
|
|
<style scoped>
|
|
.el-link {
|
|
margin-right: 8px;
|
|
}
|
|
.el-link .el-icon--right.el-icon {
|
|
vertical-align: text-bottom;
|
|
}
|
|
</style>
|