Skip to content

Commit bcf27b2

Browse files
autofix-ci[bot]padcom
authored andcommitted
[autofix.ci] apply automated fixes
1 parent f50f535 commit bcf27b2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/runtime-dom/src/apiCustomElement.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,11 @@ export class VueElement
264264
)
265265
}
266266
if (_def.shadowRoot !== false) {
267-
this.attachShadow(extend({}, _def.shadowRootOptions, { mode: 'open' }) as ShadowRootInit)
267+
this.attachShadow(
268+
extend({}, _def.shadowRootOptions, {
269+
mode: 'open',
270+
}) as ShadowRootInit,
271+
)
268272
this._root = this.shadowRoot!
269273
} else {
270274
this._root = this

0 commit comments

Comments
 (0)