mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-10 02:01:47 +00:00
9 lines
247 B
Vue
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> |