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
varglobals={};vartranscludedComponent=Vue.extend({template: "<div>blarg</div>",compiled: function(){globals.el=this.$el;// globals.el ends up inside a #document-fragment},attached: function(){alert('attached');}});
If v-if="visible" is deleted then everything works.
Am I using this incorrectly or is this a bug?
The text was updated successfully, but these errors were encountered:
The transcluded component is rendered in the DOM but the
attached
event never fires.Fiddle: http://jsfiddle.net/6Lt7kc94/3/
parent component
child component (visible is hardcoded to
true
)transcluded component
If
v-if="visible"
is deleted then everything works.Am I using this incorrectly or is this a bug?
The text was updated successfully, but these errors were encountered: