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.
div
1 parent a392059 commit 8bf3a55Copy full SHA for 8bf3a55
src/components/modal/modal.js
@@ -261,6 +261,7 @@ export const props = {
261
export const BModal = /*#__PURE__*/ Vue.extend({
262
name: NAME,
263
mixins: [idMixin, listenOnRootMixin, normalizeSlotMixin],
264
+ inheritAttrs: false,
265
model: {
266
prop: 'visible',
267
event: 'change'
@@ -992,7 +993,7 @@ export const BModal = /*#__PURE__*/ Vue.extend({
992
993
{
994
key: `modal-outer-${this._uid}`,
995
style: this.modalOuterStyle,
- attrs: { id: this.safeId('__BV_modal_outer_') }
996
+ attrs: { ...this.$attrs, id: this.safeId('__BV_modal_outer_') }
997
},
998
[modal, backdrop]
999
)
0 commit comments