mirror of
https://github.com/imezx/Warp.git
synced 2025-04-26 08:00:01 +00:00
18 lines
420 B
Vue
18 lines
420 B
Vue
|
<script setup lang="ts">
|
||
|
import type { Sponsors } from './VPSponsors.vue'
|
||
|
import type { Sponsor } from './VPSponsorsGrid.vue'
|
||
|
import VPSponsors from './VPSponsors.vue'
|
||
|
|
||
|
defineProps<{
|
||
|
tier?: string
|
||
|
size?: 'xmini' | 'mini' | 'small'
|
||
|
data: Sponsors[] | Sponsor[]
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="VPDocAsideSponsors">
|
||
|
<VPSponsors mode="aside" :tier="tier" :size="size" :data="data" />
|
||
|
</div>
|
||
|
</template>
|