diff --git a/src/components/v-form/v-form.vue b/src/components/v-form/v-form.vue index c79cf4b04e..7712825246 100644 --- a/src/components/v-form/v-form.vue +++ b/src/components/v-form/v-form.vue @@ -84,6 +84,7 @@ : values[field.field] " :width="field.width" + :type="field.type" @input="setValue(field, $event)" /> diff --git a/src/components/v-input/readme.md b/src/components/v-input/readme.md index 9272eeeb36..b0fa44aefe 100644 --- a/src/components/v-input/readme.md +++ b/src/components/v-input/readme.md @@ -23,6 +23,7 @@ You can add any custom (text) prefix/suffix to the value in the input using the | `suffix` | Show a value at the end of the input | -- | | `slug` | Force the value to be URL safe | `false` | | `slug-separator` | What character to use as separator in slugs | `-` | +| `active` | Force the focus state | `false` | Note: all other attached attributes are bound to the input HTMLELement in the component. This allows you to attach any of the standard HTML attributes like `min`, `length`, or `pattern`. diff --git a/src/components/v-input/v-input.vue b/src/components/v-input/v-input.vue index f6bdca3119..2d83bafab1 100644 --- a/src/components/v-input/v-input.vue +++ b/src/components/v-input/v-input.vue @@ -7,7 +7,7 @@