chore(): update package lock files

This commit is contained in:
ionitron
2022-06-22 14:12:49 +00:00
parent f678edb0e8
commit 288b4686d6
9 changed files with 118 additions and 80 deletions

View File

@ -1,7 +1,7 @@
import { VNode, defineComponent, getCurrentInstance, h, inject, ref, Ref } from 'vue';
export interface InputProps extends Object {
modelValue: string | boolean;
export interface InputProps {
modelValue?: string | boolean;
}
const UPDATE_VALUE_EVENT = 'update:modelValue';