Skip to content

Conversation

@ws-rush
Copy link

@ws-rush ws-rush commented Aug 29, 2022

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 and others added 3 commits July 16, 2022 14:18
Some times like in dialogs we need access to root component from child nodes, also it is a way to access root element from `v-scope` . the next snippet from another PR to expose `$el` to scope, but this PR can solve the same problem also

```html
<textarea
  v-scope="{width: $root.offsetWidth, height: $root.offsetHeight}"
  @click="width = $el.offsetWidth; height = $el.offsetHeight;"
>
{{ width }} &times; {{ height }}
</textarea>
```
thewei added a commit to thewei/petite-vue that referenced this pull request Apr 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant