Skip to content

Commit

Permalink
fix(components): fix missing default value for computed, fix #282
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Dec 30, 2023
1 parent f036525 commit 215434a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/client/form/computed.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<k-schema
v-bind="$attrs"
:schema="schema.list[0]"
:schema="{ ...schema.list[0], meta: { ...schema.meta, ...schema.list[0].meta } }"
:modelValue="modelValue"
@update:modelValue="emit('update:modelValue', $event)"
:disabled="disabled"
Expand Down

0 comments on commit 215434a

Please sign in to comment.