Michiel
Michiel
Hi Evan, Yes, it makes sense. When you say to pass the children in the data array, you're suggesting to first create the child element(s) programatically into a variable and...
Thanks! `this._transCpnts` indeed provides the access to children I was looking for and I have my first basic prototype working now! I does feel a bit hacky though, and I...
Actually in my tests so far, using `this._transCpnts` solves the problems I was having. I just looks a bit ugly. Basically I add `this.children = this._transCpnts;` in the `ready` method...
I've put up an example of a tabpanel component, that illustrates the concept of connecting parent and child components to create a single UI element. Please note it's a quick...
Thanks for the feedback! I'm working on some additional functionality to the component and run into an issue with that. I'm wondering how I would be able to create /...
Yeah, I had tried to pass the el option, but it gave some unexpected results. I think by now I've figured out what goes wrong. Or better, how it works...
Try `parent.$$.name` instead. I think this has recently changed from a single $ to a $$.
@PaulKruijt: Yes. You're correct. $$ is for v-el, my bad.