petite-vue
petite-vue copied to clipboard
Change scope of ref with `v-scope`
If there is nested component like:
<div ref="root" v-scop>
<!-- father can not be accessd -->
{{ $refs.father.innerText }}
<p ref="father" v-scope>
Hello, PVue
</p>
</div>
This PR should fix this problem