mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
18 lines
386 B
Vue
18 lines
386 B
Vue
|
<template>
|
||
|
<div class="sponsorsWrap">
|
||
|
<span class="sponsorsTitle">{{title}}</span>
|
||
|
<ul >
|
||
|
<li class="sponsorsItem">
|
||
|
<a href="https://tipe.io/?ref=ant-design-vue" target="_blank">
|
||
|
<img width="34" src="https://cdn.tipe.io/tipe/tipe-cat-no-text.svg" alt="tipe">
|
||
|
</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
props: ['title'],
|
||
|
}
|
||
|
</script>
|