We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When pass block to a component, we can't extend it in sub-template.
<Component> <b:content> <b:body>we can't extend this block(body) in sub-template</b:body> </b:content> </Component>
<b:parent> <b:body>the body can't pass to content block of parent's Component</b:body> </b:parent>
But we can do this by defining parent template like bellow:
const body = <b:body>we can extend this block(body) in sub-template</b:body> <Component> <b:content>{body}</b:content> </Component>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When pass block to a component, we can't extend it in sub-template.
But we can do this by defining parent template like bellow:
The text was updated successfully, but these errors were encountered: