Skip to content

Commit 679a013

Browse files
committed
Adding updates to vue js folder
1 parent aa38161 commit 679a013

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

resources/js/Layouts/Auth/AuthBase.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- AuthBase.vue -->
22
<script setup lang="ts">
33
import { defineProps } from 'vue';
4-
import AuthLayout from '@/@/components/settings/AuthSplitLayout.vue';
4+
import AuthLayout from '@/layouts/auth/AuthSimpleLayout.vue';
55
66
interface Props {
77
title?: string;

resources/js/Pages/Auth/ForgotPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import InputError from '@/components/InputError.vue';
55
import { Button } from '@/components/ui/button';
66
import { Input } from '@/components/ui/input';
77
import { Label } from '@/components/ui/label';
8-
import AuthLayout from '@/@/components/settings/AuthBase.vue';
8+
import AuthLayout from '@/layouts/auth/AuthBase.vue';
99
1010
defineProps<{
1111
status?: string;

resources/js/Pages/Auth/Login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { useForm, Link, Head } from '@inertiajs/vue3';
33
import { ref } from 'vue';
44
import { LoaderCircle } from 'lucide-vue-next';
5-
import AuthBase from '@/@/components/settings/AuthBase.vue';
5+
import AuthBase from '@/layouts/auth/AuthBase.vue';
66
import { Button } from '@/components/ui/button';
77
import { Input } from '@/components/ui/input';
88
import { Label } from '@/components/ui/label';

resources/js/Pages/Auth/Register.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { useForm, Link, Head } from '@inertiajs/vue3';
33
import { ref } from 'vue';
44
import { LoaderCircle } from 'lucide-vue-next';
5-
import AuthBase from '@/@/components/settings/AuthBase.vue';
5+
import AuthBase from '@/layouts/auth/AuthBase.vue';
66
import { Button } from '@/components/ui/button';
77
import { Input } from '@/components/ui/input';
88
import { Label } from '@/components/ui/label';

resources/js/Pages/Auth/ResetPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import InputError from '@/components/InputError.vue';
55
import { Button } from '@/components/ui/button';
66
import { Input } from '@/components/ui/input';
77
import { Label } from '@/components/ui/label';
8-
import AuthLayout from '@/@/components/settings/AuthBase.vue';
8+
import AuthLayout from '@/layouts/auth/AuthBase.vue';
99
1010
interface Props {
1111
token: string;

resources/js/Pages/Auth/VerifyEmail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { LoaderCircle } from 'lucide-vue-next';
33
import { Head, Link, useForm } from '@inertiajs/vue3';
44
import { Button } from '@/components/ui/button';
5-
import AuthLayout from '@/@/components/settings/AuthBase.vue';
5+
import AuthLayout from '@/layouts/auth/AuthBase.vue';
66
77
defineProps<{
88
status?: string;

resources/js/app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ createInertiaApp({
1212
title: (title) => `${title} - ${appName}`,
1313
resolve: (name) =>
1414
resolvePageComponent(
15-
`./Pages/${name}.vue`,
16-
import.meta.glob<DefineComponent>('./Pages/**/*.vue'),
15+
`./pages/${name}.vue`,
16+
import.meta.glob<DefineComponent>('./pages/**/*.vue'),
1717
),
1818
setup({ el, App, props, plugin }) {
1919
createApp({ render: () => h(App, props) })

resources/js/layouts/auth/AuthBase.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- AuthBase.vue -->
22
<script setup lang="ts">
33
import { defineProps } from 'vue';
4-
import AuthLayout from '@/@/components/settings/AuthSplitLayout.vue';
4+
import AuthLayout from '@/layouts/auth/AuthSimpleLayout.vue';
55
66
interface Props {
77
title?: string;

resources/js/pages/auth/ForgotPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import InputError from '@/components/InputError.vue';
55
import { Button } from '@/components/ui/button';
66
import { Input } from '@/components/ui/input';
77
import { Label } from '@/components/ui/label';
8-
import AuthLayout from '@/@/components/settings/AuthBase.vue';
8+
import AuthLayout from '@/layouts/auth/AuthBase.vue';
99
1010
defineProps<{
1111
status?: string;

resources/js/pages/auth/Login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { useForm, Link, Head } from '@inertiajs/vue3';
33
import { ref } from 'vue';
44
import { LoaderCircle } from 'lucide-vue-next';
5-
import AuthBase from '@/@/components/settings/AuthBase.vue';
5+
import AuthBase from '@/layouts/auth/AuthBase.vue';
66
import { Button } from '@/components/ui/button';
77
import { Input } from '@/components/ui/input';
88
import { Label } from '@/components/ui/label';

0 commit comments

Comments
 (0)