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
I just stumbled upon something: I have registered & encapsulated some private components into a vm. Some of them are created via the DOM with v-component. Some others need to be created procedurally. I tried this:
var TheComponent = Vue.component('the-component');
var component = new TheComponent({....});
but Vue.component(id) returns undefined. Is this possible at the moment ?
Also, I remember this issue from @bpierre, is there a specific way to instanciate a given component without having to retrieve it first ?
The text was updated successfully, but these errors were encountered:
Hello,
5 months in and still loving Vue :)
I just stumbled upon something: I have registered & encapsulated some private components into a vm. Some of them are created via the DOM with
v-component
. Some others need to be created procedurally. I tried this:but
Vue.component(id)
returnsundefined
. Is this possible at the moment ?Also, I remember this issue from @bpierre, is there a specific way to instanciate a given component without having to retrieve it first ?
The text was updated successfully, but these errors were encountered: