File tree 6 files changed +62
-69
lines changed
6 files changed +62
-69
lines changed Original file line number Diff line number Diff line change 25
25
" pmneo.tsimporter"
26
26
],
27
27
"settings" : {
28
- "terminal.integrated.shell.linux" : " /bin/sh"
28
+ "terminal.integrated.shell.linux" : " /bin/sh" ,
29
+ "html.format.wrapAttributes" : " force-expand-multiline" ,
30
+ "[vue]" : {
31
+ "editor.defaultFormatter" : " Vue.volar" ,
32
+ "editor.tabSize" : 4
33
+ }
29
34
}
30
35
}
31
36
},
Original file line number Diff line number Diff line change @@ -7,7 +7,10 @@ defineProps({
7
7
</script >
8
8
9
9
<template >
10
- <div v-if =" errors" class =" space-y-1" >
10
+ <div
11
+ v-if =" errors"
12
+ class =" space-y-1"
13
+ >
11
14
<Message
12
15
v-for =" (errorMessage, index) in errors"
13
16
:key =" index"
Original file line number Diff line number Diff line change 1
1
<template >
2
- <PanelMenu
3
- :pt =" {
4
- root: {
5
- class: 'p-0 m-0 gap-1',
6
- },
7
- panel: {
8
- class: 'p-0 border-0',
9
- },
10
- header: {
11
- class: 'p-0 border-0',
12
- },
13
- itemContent: {
14
- class: 'gap-1',
15
- },
16
- }"
17
- >
2
+ <PanelMenu :pt =" {
3
+ root: {
4
+ class: 'p-0 m-0 gap-1',
5
+ },
6
+ panel: {
7
+ class: 'p-0 border-0',
8
+ },
9
+ header: {
10
+ class: 'p-0 border-0',
11
+ },
12
+ itemContent: {
13
+ class: 'gap-1',
14
+ },
15
+ }" >
18
16
<template #item =" { item , active } " >
19
17
<RouterLink
20
18
v-if =" item.route"
Original file line number Diff line number Diff line change @@ -10,13 +10,11 @@ await authStore.fetchUser();
10
10
<template >
11
11
<main >
12
12
<div class =" h-screen flex items-center justify-center" >
13
- <Card
14
- :pt =" {
15
- body: {
16
- class: 'p-4 py-6 sm:p-12',
17
- },
18
- }"
19
- >
13
+ <Card :pt =" {
14
+ body: {
15
+ class: 'p-4 py-6 sm:p-12',
16
+ },
17
+ }" >
20
18
<template #content >
21
19
<div class =" text-center md:text-left" >
22
20
<section >
@@ -27,17 +25,15 @@ await authStore.fetchUser();
27
25
<a
28
26
href =" https://laravel.com/docs/master/starter-kits#laravel-breeze"
29
27
class =" underline text-primary hover:text-color"
30
- >Laravel Breeze</a
31
- >
28
+ >Laravel Breeze</a >
32
29
authentication with the API stack,
33
30
</p >
34
31
<p class =" mt-0 mb-6 text-muted-color leading-normal" >
35
32
Utilizing
36
33
<a
37
34
href =" https://primevue.org/"
38
35
class =" underline text-primary hover:text-color"
39
- >PrimeVue</a
40
- >
36
+ >PrimeVue</a >
41
37
components in a basic SPA
42
38
</p >
43
39
<template v-if =" authStore ?.user " >
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<main >
3
3
<div class =" h-screen flex items-center justify-center" >
4
- <Card
5
- :pt =" {
6
- body: {
7
- class: 'p-4 py-6 sm:p-12',
8
- },
9
- }"
10
- >
4
+ <Card :pt =" {
5
+ body: {
6
+ class: 'p-4 py-6 sm:p-12',
7
+ },
8
+ }" >
11
9
<template #content >
12
10
<div class =" text-center" >
13
11
<section >
14
12
<h2 class =" mb-8 font-extrabold text-9xl" > <span class =" sr-only" >Error</span >404 </h2 >
15
- <p class =" mb-8 text-2xl font-semibold md:text-3xl text-muted-color"
16
- >Sorry, we couldn't find this page.</p
17
- >
13
+ <p class =" mb-8 text-2xl font-semibold md:text-3xl text-muted-color" >Sorry, we couldn't find
14
+ this page.</p >
18
15
<RouterLink :to =" { name: 'welcome' }" >
19
16
<Button
20
17
label =" Back to homepage"
Original file line number Diff line number Diff line change @@ -15,33 +15,29 @@ import UpdateProfileInformationForm from './partials/UpdateProfileInformationFor
15
15
<Container >
16
16
<div class =" py-4 md:py-8" >
17
17
<div class =" space-y-4 md:space-y-8" >
18
- <Card
19
- :pt =" {
20
- body: {
21
- class: 'max-w-2xl space-y-3',
22
- },
23
- caption: {
24
- class: 'space-y-1',
25
- },
26
- }"
27
- >
18
+ <Card :pt =" {
19
+ body: {
20
+ class: 'max-w-2xl space-y-3',
21
+ },
22
+ caption: {
23
+ class: 'space-y-1',
24
+ },
25
+ }" >
28
26
<template #title >Profile Information</template >
29
27
<template #subtitle > Update your account's profile information and email address. </template >
30
28
<template #content >
31
29
<UpdateProfileInformationForm />
32
30
</template >
33
31
</Card >
34
32
35
- <Card
36
- :pt =" {
37
- body: {
38
- class: 'max-w-2xl space-y-3',
39
- },
40
- caption: {
41
- class: 'space-y-1',
42
- },
43
- }"
44
- >
33
+ <Card :pt =" {
34
+ body: {
35
+ class: 'max-w-2xl space-y-3',
36
+ },
37
+ caption: {
38
+ class: 'space-y-1',
39
+ },
40
+ }" >
45
41
<template #title >Update Password</template >
46
42
<template #subtitle >
47
43
Ensure your account is using a long, random password to stay secure.
@@ -51,16 +47,14 @@ import UpdateProfileInformationForm from './partials/UpdateProfileInformationFor
51
47
</template >
52
48
</Card >
53
49
54
- <Card
55
- :pt =" {
56
- body: {
57
- class: 'max-w-2xl space-y-3',
58
- },
59
- caption: {
60
- class: 'space-y-1',
61
- },
62
- }"
63
- >
50
+ <Card :pt =" {
51
+ body: {
52
+ class: 'max-w-2xl space-y-3',
53
+ },
54
+ caption: {
55
+ class: 'space-y-1',
56
+ },
57
+ }" >
64
58
<template #title >Delete Account</template >
65
59
<template #subtitle >
66
60
Once your account is deleted, all of its resources and data will be permanently deleted.
You can’t perform that action at this time.
0 commit comments