Skip to content

Commit

Permalink
fix(vue): modelValue is now optional (#234)
Browse files Browse the repository at this point in the history
Resolves #233
  • Loading branch information
sean-perkins authored Mar 9, 2022
2 parents 9e3d1de + ac3de2a commit f34e2d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue-output-target/vue-component-lib/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { VNode, defineComponent, getCurrentInstance, h, inject, ref, Ref } from 'vue';

export interface InputProps extends Object {
modelValue: string | boolean;
modelValue?: string | boolean;
}

const UPDATE_VALUE_EVENT = 'update:modelValue';
Expand Down

0 comments on commit f34e2d9

Please sign in to comment.