mirror of
https://github.com/henry4682/finance_app.git
synced 2026-07-16 00:10:00 +00:00
feat: 前端分離+功能api化
1. 新增資產管理CRUD、googleOAuth登入 2. 更改原記帳controller
This commit is contained in:
@@ -5,7 +5,8 @@ import InputError from '@/Components/InputError.vue';
|
||||
import InputLabel from '@/Components/InputLabel.vue';
|
||||
import PrimaryButton from '@/Components/PrimaryButton.vue';
|
||||
import TextInput from '@/Components/TextInput.vue';
|
||||
import { Head, Link, useForm } from '@inertiajs/vue3';
|
||||
import { RouterLink, useRoute } from 'vue-router';
|
||||
import { reactive } from 'vue';
|
||||
|
||||
defineProps({
|
||||
canResetPassword: {
|
||||
@@ -16,7 +17,7 @@ defineProps({
|
||||
},
|
||||
});
|
||||
|
||||
const form = useForm({
|
||||
const form = reactive({
|
||||
email: '',
|
||||
password: '',
|
||||
remember: false,
|
||||
@@ -31,7 +32,7 @@ const submit = () => {
|
||||
|
||||
<template>
|
||||
<GuestLayout>
|
||||
<Head title="Log in" />
|
||||
<div title="Log in"></div>
|
||||
|
||||
<div v-if="status" class="mb-4 text-sm font-medium text-green-600">
|
||||
{{ status }}
|
||||
|
||||
Reference in New Issue
Block a user