We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8462916 commit 8c6fe4aCopy full SHA for 8c6fe4a
src/components/TextInput/TextInput.mdx
@@ -10,6 +10,7 @@ import TextInput from '@jackdomleo7/vue3-library/components/TextInput/TextInput.
10
```
11
12
<Story of={TextInputStories.TypeText} />
13
+<br/>
14
15
## `v-model`
16
@@ -161,7 +162,7 @@ Any non-prop attributes and any event listeners will fallthrough to the `<input/
161
162
#### Minlength
163
164
```html
-<TextInput minlength />
165
+<TextInput minlength="5" />
166
167
168
<Story of={TextInputStories.Minlength} />
@@ -170,7 +171,7 @@ Any non-prop attributes and any event listeners will fallthrough to the `<input/
170
171
#### Maxlength
172
173
-<TextInput maxlength />
174
+<TextInput maxlength="5" />
175
176
177
<Story of={TextInputStories.Maxlength} />
0 commit comments