You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standard web components written in vanilla JS don't seems to be supported by vue triggering Uncaught DOMException: Operation is not supported ... createElement#13109
Closed
vemonet opened this issue
Mar 27, 2025
· 1 comment
An editor for SPARQL queries should be displayed using this web component.
What is actually happening?
Nothing displayed
Get warning:
[Vue warn]: Failed to resolve component: sparql-editor
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
at <TheWelcome >
at <HomeView onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > >
at <RouterView >
at <App>
And error:
Uncaught DOMException: Operation is not supported
createElement runtime-dom.esm-bundler.js:37
mountElement runtime-core.esm-bundler.js:4846
Following the first link brings to the const el here:
createElement: (tag,namespace,is,props)=>{constel=namespace==="svg" ? doc.createElementNS(svgNS,tag) : namespace==="mathml" ? doc.createElementNS(mathmlNS,tag) : is ? doc.createElement(tag,{ is }) : doc.createElement(tag);if(tag==="select"&&props&&props.multiple!=null){el.setAttribute("multiple",props.multiple);}returnel;},
The error seems to point at a createElement that is not supported on the DOM, which is unfortunate because this is probably the most basic operation one will want to do on the DOM
Note I am creating a <style> element: document.createElement("style") which is really a common practice when building standard web component. Not sure if this could conflict with the built in vuejs style element?
Someone managed to make it work by wrapping it in a <v-html>, so it works, just not when vue tries to compile it
It's quite frustrating to see that 10+ years old "standard web components" are still so poorly supported by mainstream frameworks 😭 I hate to give it all to 1 framework, and for this web components should be a decent option, but it seems like there is always a problem. I even did the extra work to write it in vanilla JS no framework to avoid weird walled gardens, but here we go getting the most basic DOM manipulation function not supported by vue 😭
Also I do not use shadowDOM because I know how poorly it is supported by most JS frameworks and hated by frameworks devs
Vue boasts to perfectly supports web component (https://vuejs.org/guide/extras/web-components), so I guess it should just be a weird peculiarity with one of my createElement, and not something related to custom elements themselves?
Also the fact I need to do some weird config in compilerOptions.isCustomElement is really not ideal from the start. Web components are there for more than 10 years, and the rule is clear: if it's lower case with at least 1 dash it's a custom element. There is no reason to ask devs do those weird additional config for each web component they would like to use.
The text was updated successfully, but these errors were encountered:
Vue version
3.5.13
Link to minimal reproduction
https://stackblitz.com/edit/vitejs-vite-pbrkv3zs?file=src%2Fcomponents%2FHelloWorld.vue
Steps to reproduce
In the reproduction link open the terminal to see the error
Uncaught DOMException: Operation is not supported ... createElement
Otherwise locally:
npm create vue@latest
npm i --save @sib-swiss/sparql-editor
Start in dev with
npm run dev
What is expected?
An editor for SPARQL queries should be displayed using this web component.
What is actually happening?
Nothing displayed
Get warning:
And error:
Following the first link brings to the
const el
here:The error seems to point at a
createElement
that is not supported on the DOM, which is unfortunate because this is probably the most basic operation one will want to do on the DOMNote I am creating a
<style>
element:document.createElement("style")
which is really a common practice when building standard web component. Not sure if this could conflict with the built in vuejs style element?I am not doing anything really fancy in my web component, you can see most of the code here: https://github.com/sib-swiss/sparql-editor/blob/main/packages/sparql-editor/src/sparql-editor.ts
System Info
Any additional comments?
Someone managed to make it work by wrapping it in a
<v-html>
, so it works, just not when vue tries to compile itIt's quite frustrating to see that 10+ years old "standard web components" are still so poorly supported by mainstream frameworks 😭 I hate to give it all to 1 framework, and for this web components should be a decent option, but it seems like there is always a problem. I even did the extra work to write it in vanilla JS no framework to avoid weird walled gardens, but here we go getting the most basic DOM manipulation function not supported by vue 😭
Also I do not use shadowDOM because I know how poorly it is supported by most JS frameworks and hated by frameworks devs
Vue boasts to perfectly supports web component (https://vuejs.org/guide/extras/web-components), so I guess it should just be a weird peculiarity with one of my createElement, and not something related to custom elements themselves?
Also the fact I need to do some weird config in
compilerOptions.isCustomElement
is really not ideal from the start. Web components are there for more than 10 years, and the rule is clear: if it's lower case with at least 1 dash it's a custom element. There is no reason to ask devs do those weird additional config for each web component they would like to use.The text was updated successfully, but these errors were encountered: