We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Using a repeater in trascluded content seems to set the scope to the current component, instead of the parent - as it is outside of the repeater:
http://jsfiddle.net/43LbnLpj/
The text was updated successfully, but these errors were encountered:
See 12.5 release notes - now trascluded component is the child of its host component. So, this will work: http://jsfiddle.net/43LbnLpj/1/
Sorry, something went wrong.
@OEvgeny I've actually read the release notes, but that didn't help me much.
Note that {{msg}}, together with any directives on the transcluded components, will still be compiled in the host's parent scope.
{{msg}}
The host's parent scope, not the host parent scope.
Unless I'm misunderstanding it, the tab content is compiled the the scope of tabs' parent.
tab
tabs
In my example, v-repeat's content should be compiled in the root scope, which is inner's parent.
v-repeat
inner
Ah, yes. Got it.
e087e58
No branches or pull requests
Using a repeater in trascluded content seems to set the scope to the current component, instead of the parent - as it is outside of the repeater:
http://jsfiddle.net/43LbnLpj/
The text was updated successfully, but these errors were encountered: