Skip to content

Commit ceb1030

Browse files
committed
Fix hydration blocker attributes forwarding
Fixes maoberlehner#96
1 parent fc76681 commit ceb1030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/hydration-blocker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export function makeHydrationBlocker(component, options) {
8383
},
8484
render(h) {
8585
return h(this.Nonce, {
86-
attrs: this.$attrs,
86+
attrs: Object.assign({}, this.$attrs),
8787
on: this.$listeners,
8888
scopedSlots: this.$scopedSlots,
8989
}, this.$slots.default);

0 commit comments

Comments
 (0)