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.
1 parent 555f5e2 commit a6ace2fCopy full SHA for a6ace2f
src/components/image/img-lazy.js
@@ -140,15 +140,15 @@ export const BImgLazy = /*#__PURE__*/ Vue.extend({
140
return h(BImg, {
141
directives,
142
props: {
143
+ // Passthrough props
144
+ ...pluckProps(imgProps, this.$props),
145
// Computed value props
146
src: this.computedSrc,
147
blank: this.computedBlank,
148
width: this.computedWidth,
149
height: this.computedHeight,
150
srcset: this.computedSrcset || null,
- sizes: this.computedSizes || null,
- // Passthrough props
151
- ...pluckProps(imgProps, this.$props)
+ sizes: this.computedSizes || null
152
}
153
})
154
0 commit comments