feat: 前端分離+功能api化

1. 新增資產管理CRUD、googleOAuth登入
2. 更改原記帳controller
This commit is contained in:
2026-06-25 14:19:07 +08:00
parent 7bb931c97b
commit 85972f950c
70 changed files with 4754 additions and 1520 deletions

View File

@@ -1,6 +1,6 @@
<script setup>
import { computed } from 'vue';
import { Link } from '@inertiajs/vue3';
import { RouterLink } from 'vue-router';
const props = defineProps({
href: {
@@ -20,7 +20,7 @@ const classes = computed(() =>
</script>
<template>
<Link :href="href" :class="classes">
<RouterLink :to="href" :class="classes">
<slot />
</Link>
</RouterLink>
</template>