Skip to content

Commit 44c3e2c

Browse files
committed
chore(forms): remove required on Input, Select and Textarea name
Resolves #236
1 parent a96dc19 commit 44c3e2c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/runtime/components/forms/Input.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default defineComponent({
5555
},
5656
name: {
5757
type: String,
58-
required: true
58+
default: null
5959
},
6060
placeholder: {
6161
type: String,

src/runtime/components/forms/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default defineComponent({
7171
},
7272
name: {
7373
type: String,
74-
required: true
74+
default: null
7575
},
7676
placeholder: {
7777
type: String,

src/runtime/components/forms/Textarea.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default defineComponent({
3838
},
3939
name: {
4040
type: String,
41-
required: true
41+
default: null
4242
},
4343
placeholder: {
4444
type: String,

0 commit comments

Comments
 (0)