Files
finance_app/resources/js/Layouts/GuestLayout.vue
henry yo 85972f950c feat: 前端分離+功能api化
1. 新增資產管理CRUD、googleOAuth登入
2. 更改原記帳controller
2026-06-25 14:19:07 +08:00

23 lines
626 B
Vue

<script setup>
import ApplicationLogo from '@/Components/ApplicationLogo.vue';
import { RouterLink } from 'vue-router';
</script>
<template>
<div
class="flex min-h-screen flex-col items-center bg-gray-100 pt-6 sm:justify-center sm:pt-0"
>
<div>
<RouterLink :to="{ name: 'home' }">
<ApplicationLogo class="h-20 w-20 fill-current text-gray-500" />
</RouterLink>
</div>
<div
class="mt-6 w-full overflow-hidden bg-white px-6 py-4 shadow-md sm:max-w-md sm:rounded-lg"
>
<slot />
</div>
</div>
</template>