Fixed #5664 - [v4 beta1: InputMask] Placeholder attribute does not work
parent
a25418eef3
commit
9e428a1a15
|
@ -15,6 +15,10 @@ export default {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
|
placeholder: {
|
||||||
|
type: String,
|
||||||
|
default: null
|
||||||
|
},
|
||||||
autoClear: {
|
autoClear: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true
|
default: true
|
||||||
|
|
|
@ -111,6 +111,10 @@ export interface InputMaskProps {
|
||||||
* Mask pattern.
|
* Mask pattern.
|
||||||
*/
|
*/
|
||||||
mask?: string | undefined;
|
mask?: string | undefined;
|
||||||
|
/**
|
||||||
|
* Placeholder text for the input.
|
||||||
|
*/
|
||||||
|
placeholder?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Clears the incomplete value on blur.
|
* Clears the incomplete value on blur.
|
||||||
* @defaultValue true
|
* @defaultValue true
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:invalid="invalid"
|
:invalid="invalid"
|
||||||
:variant="variant"
|
:variant="variant"
|
||||||
|
:placeholder="placeholder"
|
||||||
:unstyled="unstyled"
|
:unstyled="unstyled"
|
||||||
@input="onInput"
|
@input="onInput"
|
||||||
@focus="onFocus"
|
@focus="onFocus"
|
||||||
|
|
Loading…
Reference in New Issue