Files
LicenseAPI/docs/components/Logo.vue
Mathias Wagner 4b2fd71fed Update Logo.vue
2024-07-30 15:45:14 +02:00

9 lines
247 B
Vue

<script setup lang="ts">
const colorMode = useColorMode()
</script>
<template>
<img src="/licenseapi-dark.png" v-if="colorMode.value === 'light'" alt="LicenseAPI Logo" />
<img src="/licenseapi.png" v-else alt="LicenseAPI Logo" />
</template>