I have a strange issue am not sure if am doing something wrong but I have this template: https://github.com/Mech7/vue-skeleton/blob/master/src/component-result/template.html#L2 If i use: ``` <div class="pagination" v-component="pagination" v-ref="pagination"></div> ``` It does not render, but if I add a html element before it like: ``` <div></div> <div class="pagination" v-component="pagination" v-ref="pagination"></div> ``` It works fine?