InputOtp: fix default modelValue
parent
f6fc6cc435
commit
25406db458
|
@ -8,7 +8,7 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
modelValue: {
|
modelValue: {
|
||||||
type: null,
|
type: null,
|
||||||
default: false
|
default: null
|
||||||
},
|
},
|
||||||
invalid: {
|
invalid: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
|
|
@ -140,7 +140,7 @@ export interface InputOtpTemplateEvents {
|
||||||
export interface InputOtpProps {
|
export interface InputOtpProps {
|
||||||
/**
|
/**
|
||||||
* Specifies whether a inputotp should be checked or not.
|
* Specifies whether a inputotp should be checked or not.
|
||||||
* @defaultValue false
|
* @defaultValue null
|
||||||
*/
|
*/
|
||||||
modelValue?: boolean | string | undefined;
|
modelValue?: boolean | string | undefined;
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue