up
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<script setup>
|
||||
import AppToast from '@/components/AppToast.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex min-h-screen items-center justify-center bg-gradient-to-br from-gray-50 to-gray-100 dark:from-dk-base dark:to-dk-card">
|
||||
<div class="w-full">
|
||||
<RouterView />
|
||||
</div>
|
||||
<AppToast />
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,16 @@
|
||||
<script setup>
|
||||
import AppHeader from '@/components/AppHeader.vue'
|
||||
import AppFooter from '@/components/AppFooter.vue'
|
||||
import AppToast from '@/components/AppToast.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex min-h-screen flex-col">
|
||||
<AppHeader />
|
||||
<main class="flex-1">
|
||||
<RouterView />
|
||||
</main>
|
||||
<AppFooter />
|
||||
<AppToast />
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user