mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-08-29 04:32:06 -04:00
13 lines
298 B
Vue
13 lines
298 B
Vue
|
|
<template>
|
||
|
|
<template v-if="!mLogoObjectId">
|
||
|
|
<DropLogo />
|
||
|
|
</template>
|
||
|
|
<template v-else>
|
||
|
|
<img :src="useObject(mLogoObjectId)" :alt="`${serverName} logo`" />
|
||
|
|
</template>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
const { serverName, mLogoObjectId } = await $dropFetch("/api/v1");
|
||
|
|
</script>
|