2018-09-06 12:11:10 +00:00
|
|
|
<template>
|
2019-02-01 09:23:00 +00:00
|
|
|
<div class="snd-ad">
|
|
|
|
<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>
|
2018-09-24 07:37:36 +00:00
|
|
|
</div>
|
2018-09-06 12:11:10 +00:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: ['title'],
|
2019-01-12 03:33:27 +00:00
|
|
|
};
|
2018-09-06 12:11:10 +00:00
|
|
|
</script>
|