Component compilation scope change When a component is used in a parent template, e.g.: <div v-component v-show="active" v-on="click:onClick"> <p>{{message}}</p> </div> The directives (v-show and v-on) and the transclusion content ({{message}}) will now be compiled in the parent's scope. That means the value of active, onClick and message will be resolved against the parent. Any directives/interpo

