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
Seems to only understand this one very specific output.
Seems to trip over:
var Sub = function VueComponent(options) {
this._init(options);
};
Problem to me seems that we already have a VueComponent, that's what @Component shims the output of your export to. Can we add a check to see if this is already done and support this other export type?
Me logging my export that gets passed in to the second param of Vue.customElement
The text was updated successfully, but these errors were encountered:
When using: https://github.com/vuejs/vue-class-component
And exporting a component using
@Component
syntax, this plugin dies and complains about the following:Non-decorated TS exports work just fine. Any help? Rewriting my whole codebase to be non-decorated would take quite some time.
https://github.com/karol-f/vue-custom-element#javascript---register-with-vue-custom-element
Seems to only understand this one very specific output.
Seems to trip over:
Problem to me seems that we already have a
VueComponent
, that's what@Component
shims the output of your export to. Can we add a check to see if this is already done and support this other export type?Me logging my export that gets passed in to the second param of
Vue.customElement
The text was updated successfully, but these errors were encountered: