vue-custom-element icon indicating copy to clipboard operation
vue-custom-element copied to clipboard

Vue Custom Element - Web Components' Custom Elements for Vue.js

Results 28 vue-custom-element issues
Sort by recently updated
recently updated
newest added

@karol-f When prop needs to be of object/array type, it needs to be operated through JS. However, the rendering of custom-element in React Hook does not seem to be consistent...

First - great project which enables me to nicely transition from jQuery to Vue without a need of total rewrite on day one. Assumptions: - hybrid project (i.e. Vue custom...

Does someone have a working project with Bootstrap + shadow DOM implementation and willing to share it with me? Struggling to get this done for several days now so I...

For async component, props definition weren't available when setting `observedAttributes` causing `attributeChangedCallback` not firing at all. Changing to use `MutationObserver` to watch for any attribute changes. --- I'm not able...

I have a component that uses vue-i18n and works as a normal vue component. When creating web component I had `TypeError: this is undefined` error with typescript, then created the...

waiting for feedback from issue author

It seems I can't pass Object data from Custom Element to Vue Component. I am defining the Custom Element in Vue and then using objectProp in JS to create an...

waiting for feedback from issue author

Hello, I'm turning a big app into a web components using vue-custom-element and I have some problems with the elements not attaching correctly to the DOM or opening and closing...

Investigating

https://github.com/vuejs/composition-api

I created a Vue component "simple-form" for building dynamic forms. It's using vue-custom-element in order to be able to inject it in my websites. To be able to specify a...

Investigating

Hi, I am doing the following in typescript ``` Vue.customElement('coupon-preview', new CouponPreview({ store }).$options); ``` But I am getting the following error because the store is not present in the...