Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 6a63ee4

Browse files
committed
feat(BModal): passify modelValue
1 parent c58578f commit 6a63ee4

File tree

1 file changed

+1
-1
lines changed
  • packages/bootstrap-vue-next/src/components

1 file changed

+1
-1
lines changed

packages/bootstrap-vue-next/src/components/BModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ const slots = useSlots()
258258
259259
const computedId = useId(() => props.id, 'modal')
260260
261-
const modelValue = useVModel(props, 'modelValue', emit)
261+
const modelValue = useVModel(props, 'modelValue', emit, {passive: true})
262262
263263
const busyBoolean = useBooleanish(() => props.busy)
264264
const lazyBoolean = useBooleanish(() => props.lazy)

0 commit comments

Comments
 (0)