Initial commit
This commit is contained in:
11
global-bottom.vue
Normal file
11
global-bottom.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script setup>
|
||||
import { useDarkMode } from '@slidev/client'
|
||||
const { isDark } = useDarkMode()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<footer class="absolute bottom-10 right-10 p-2">
|
||||
<img v-if="isDark" src="/rptu_white.svg" width="80" />
|
||||
<img v-else src="/rptu_black.svg" width="80" />
|
||||
</footer>
|
||||
</template>
|
||||
Reference in New Issue
Block a user