mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +08:00
22 lines
383 B
Vue
22 lines
383 B
Vue
|
<template>
|
||
|
<div class="sponsor-item">
|
||
|
<a
|
||
|
href="https://www.jnpfsoft.com/index.html?from=elementUI"
|
||
|
title="jnpfsoft"
|
||
|
target="_blank"
|
||
|
>
|
||
|
<img src="/images/jnpfsoft.jpg" alt="jnpfsoft" />
|
||
|
</a>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.sponsor-item {
|
||
|
margin-bottom: 8px;
|
||
|
img {
|
||
|
border-radius: 8px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
}
|
||
|
</style>
|