Skip to content

Commit ec0eec0

Browse files
committed
fix login
1 parent 396cfa7 commit ec0eec0

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

public/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"/app.js": "/app.js?id=e80e9505944733061e76773f8a73dda3",
2+
"/app.js": "/app.js?id=88cd4d0cd991a90987eca35d7375ac9e",
33
"/ui.js": "/ui.js?id=592866a715b1c20b43fff6ca7980b279",
44
"/manifest.js": "/manifest.js?id=3267e5c99fd7b729e2f38ec55b50397d",
55
"/app.css": "/app.css?id=4979b631c5ac542d792aa697845f8e1d",

resources/js/pages/Login.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
:type="usernameInputType"
2323
:name="username"
2424
autofocus=""
25+
autocomplete="username"
2526
required
2627
/>
2728

@@ -41,6 +42,7 @@
4142
id="password"
4243
type="password"
4344
name="password"
45+
autocomplete="current-password"
4446
required
4547
/>
4648

@@ -95,10 +97,6 @@
9597
</div>
9698
</template>
9799

98-
<script setup>
99-
defineProps({ years: Array })
100-
</script>
101-
102100
<script>
103101
import Auth from '@/layouts/Auth'
104102
import { Button, Checkbox } from 'laravel-nova-ui'
@@ -116,6 +114,7 @@ export default {
116114
props: {
117115
username: { type: String, default: 'email' },
118116
email: { type: String, default: 'email' },
117+
years: { type: Array, default: []},
119118
},
120119
121120
data() {

0 commit comments

Comments
 (0)