Back to migration overview

BFormInput Migration

Migration notes for BFormInput from BootstrapVue to BootstrapVueNext.

View Source Edit this page on GitHub Migration Notes

BFormInput Migration

Summary

Migration notes for BFormInput from BootstrapVue to BootstrapVueNext.

Affected APIs

  • BFormInput

Breaking Change

Access to the native input element is implemented differently due to changes in how Vue 3 handles references. See the BFormInput documentation for more details.

Disabling mousewheel events on numeric inputs can be achieved using Vue's native event modifier: @wheel.prevent. See the BFormInput documentation for usage examples.

trim, lazy, or number properties have been deprecated. We support the native modifiers trim, lazy, and number. They work as documented in vue.js, so there is no longer a need for the properties.

Migration Notes

  • Extracted from the canonical BootstrapVue → BootstrapVueNext migration guide.

Safe Automatic Rewrite

Yes. This entry is mostly mechanical and can usually be rewritten automatically when the surrounding code matches the documented patterns.

  • None