We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8191b2c commit 74bb8e1Copy full SHA for 74bb8e1
src/Component.ts
@@ -50,7 +50,9 @@ export default defineComponent({
50
const preventOnChange = ref(false)
51
52
const initialMode = conclude([props.mode, globalProps.mode])
53
- const initialValue = conclude([props[modelValueProp], globalProps[modelValueProp]])
+ const initialValue = conclude([props[modelValueProp], globalProps[modelValueProp]], {
54
+ camelCase: false,
55
+ })
56
const initialBoolAttrs = Object.fromEntries(Array.from(boolAttrs, boolAttr =>
57
[boolAttr, conclude([props[boolAttr], globalProps[boolAttr]])])
58
.filter(([, v]) => v !== undefined))
0 commit comments