mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 06:55:55 +00:00
24 lines
451 B
Vue
24 lines
451 B
Vue
<script setup lang="ts">
|
|
import { VPDocAsideSponsors } from 'vitepress/theme'
|
|
|
|
const data = [
|
|
{
|
|
items: [
|
|
{
|
|
img: 'https://jsd.toshiki.dev/gh/andatoshiki/toshiki-notebook@master/assets/logo/sponsor/telegram.png',
|
|
},
|
|
],
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<VPDocAsideSponsors :data="data" />
|
|
</template>
|
|
|
|
<style>
|
|
.vp-sponsor-grid.medium .vp-sponsor-grid-image {
|
|
max-height: 90px;
|
|
}
|
|
</style>
|