mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 07:08:02 +00:00
chore: add docker-compose configuration for app, worker, and redis services
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
</Field>
|
</Field>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { Label } from '@/components/ui/label'
|
||||||
import { Input } from '@/components/ui/input'
|
import { Input } from '@/components/ui/input'
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
name: string
|
name: string
|
||||||
|
|||||||
@@ -1,20 +1,18 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { Toaster } from "vue-sonner";
|
import { Toaster } from 'vue-sonner'
|
||||||
await useSeo();
|
await useSeo()
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="h-screen w-screen">
|
<div class="h-screen w-screen">
|
||||||
<GlobalDrawer />
|
<GlobalDrawer />
|
||||||
<Toaster position="top-center" richColors closeButton />
|
<Toaster position="top-center" richColors closeButton />
|
||||||
<img
|
<img
|
||||||
class="w-full h-full object-cover absolute inset-0 -z-[1]"
|
class="w-full h-full object-cover absolute inset-0 -z-[1] bg-gradient-to-bl from-primary/40 to-primary"
|
||||||
src="https://img.fudaoyuan.icu/api/1/random/?scale_min=1.5&webp=true&md=false&format=302"
|
src="https://img.fudaoyuan.icu/api/1/random/?scale_min=1.5&webp=true&md=false&format=302"
|
||||||
/>
|
/>
|
||||||
<div
|
<div class="h-full w-full flex flex-col items-center lg:p-10 p-5 overflow-y-auto">
|
||||||
class="h-full w-full flex flex-col items-center lg:p-10 p-5 overflow-y-auto"
|
<Navbar />
|
||||||
>
|
<slot />
|
||||||
<Navbar />
|
</div>
|
||||||
<slot />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user