✨ Add catpcha, callback
This commit is contained in:
19
app/layouts/minimal.vue
Normal file
19
app/layouts/minimal.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<v-app :theme="isDark ? 'dark' : 'light'">
|
||||
<v-app-bar flat height="48">
|
||||
<v-container class="mx-auto d-flex align-center justify-center">
|
||||
<p class="text-sm">Solar Network</p>
|
||||
</v-container>
|
||||
</v-app-bar>
|
||||
|
||||
<v-main>
|
||||
<slot />
|
||||
</v-main>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { useCustomTheme } from "~/composables/useCustomTheme"
|
||||
|
||||
const { isDark } = useCustomTheme()
|
||||
</script>
|
Reference in New Issue
Block a user