InputOtp: fix default modelValue

pull/6501/head
tugcekucukoglu 2024-09-30 12:48:58 +03:00
parent f6fc6cc435
commit 25406db458
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export default {
props: { props: {
modelValue: { modelValue: {
type: null, type: null,
default: false default: null
}, },
invalid: { invalid: {
type: Boolean, type: Boolean,

View File

@ -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;
/** /**