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.
2 parents a61c49f + 2521281 commit f367cf6Copy full SHA for f367cf6
src/interface.vue
@@ -4,7 +4,15 @@
4
<span class="computed-value">{{ computedValue }}</span>
5
<span class="suffix">{{ suffix }}</span>
6
</div>
7
- <v-input v-else v-model="value" />
+ <v-input
8
+ v-else
9
+ v-bind="$attrs"
10
+ :field="field"
11
+ :collection="collection"
12
+ :primary-key="primaryKey"
13
+ :model-value="value"
14
+ @update:model-value="$emit('input', $event)"
15
+ />
16
<v-notice v-if="errorMsg" type="danger">{{ errorMsg }}</v-notice>
17
</template>
18
0 commit comments