petite-vue icon indicating copy to clipboard operation
petite-vue copied to clipboard

Change scope of ref with `v-scope`

Open ws-rush opened this issue 2 years ago • 0 comments

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

ws-rush avatar Aug 29 '22 15:08 ws-rush