We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c51e343 commit 5575683Copy full SHA for 5575683
eslint.config.js
@@ -16,6 +16,14 @@ export default typescriptEslint.config(
16
languageOptions: {
17
ecmaVersion: 'latest',
18
sourceType: 'module',
19
+ globals: {
20
+ ...globals.browser,
21
+ process: 'readonly',
22
+ module: 'readonly',
23
+ require: 'readonly',
24
+ Ziggy: 'readonly',
25
+ window: 'readonly',
26
+ },
27
},
28
29
{
resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue
@@ -48,8 +48,8 @@ onMounted(() => {
48
<div class="space-y-2">
49
<label for="name">Name</label>
50
<InputText
51
- ref="name-input"
52
id="name"
+ ref="name-input"
53
v-model="form.name"
54
type="text"
55
required
0 commit comments