Ability to use CSS in Shadow DOM
Options object now accept shadowCss
string that will be inserted into element's Shadow DOM.
Example:
import MyElement from './MyElement.vue';
Vue.customElement('my-element', MyElement, {
shadow: true,
shadowCss: `
.card {
background-color: blue;
}`
});