Support custom elements
See original GitHub issueHi, do you have plans for custom elements support?
I gave a look at the code and should be a painless implementation (just handle the is
attribute and add an argument to the createElement
functions).
If you glad, I can submit a PR. Thanks
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:21 (7 by maintainers)
Top Results From Across the Web
Custom Elements (V1) | Can I use... Support tables for ...
"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers.
Read more >Using custom elements - Web Components | MDN
Autonomous custom elements are standalone — they don't inherit from standard HTML elements. You use these on a page by literally writing them ......
Read more >Custom Elements Everywhere
Vue can listen to native DOM events dispatched from Custom Elements. Its declarative event bindings only support lowercase and kebab case events. To...
Read more >Custom Elements v1 - Reusable Web Components
Custom elements allow web developers to define new HTML tags, extend existing ones, and create reusable web components.
Read more >Support for Custom Elements | TestComplete Documentation
Custom elements can be: Autonomous – You define a completely new HTML element, and then use it as a regular web element in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you @mightyiam. I’ll submit a PR.
I actually didn’t know of that feature.
If I understand correctly we should just handle an
is
property on the data object and pass it along tocreateElement
. The code should be changed around here.Does that sound right to you? I’d love a PR 😄