Wrap and register a Vue component as a custom element.
Requires native ES2015 class support. IE11 and below are not supported.
import Vue from 'vue' import wrap from '@vue/web-component-wrapper' const Component = { // any component options } const CustomElement = wrap(Vue, Component) window.customElements.define('my-element', CustomElement)-  All propsdeclared in the Vue component are exposed on the custom element as its properties. Kebab-case props are converted to camelCase properties, similar to how they are converted in Vue.
-  Setting properties on the custom element updates the props passed to the inner Vue component. 
-  Setting attributes on the custom element updates corresponding declared props. Attributes are mapped to kebab-case. For example, a prop named somePropwill have a corresponding attribute namedsome-prop.
-  Attributes that map to props declared with type: Booleanare auto-casted into boolean values in the following rules:-  ""or same value as attribute name: ->true
-  "true"->true
-  "false"->false
 
-  
-  Attributes that map to props declared with type: Numberare auto-casted into numbers if the value is a parsable number.
Custom events emitted on the inner Vue component are dispatched on the custom element as a CustomEvent. Additional arguments passed to $emit will be exposed as an Array as event.detail.
Slots work the same way as expected, including named slots. They also update when changed (using MutationObserver).
Scoped slots however, are not supported as they are a Vue specific concept.
When the custom element is removed from the document, the Vue component behaves just as if it's inside a <keep-alive> and its deactivated hook will be called. When it's inserted again, the activated hook will be called.
If you wish to destroy the inner component, you'd have to do that explicitly:
myElement.vueComponent.$destroy()Special thanks to the prior work by @karol-f in vue-custom-element.
MIT