Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change scope of ref with v-scope #181

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

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
1 participant