I am trying out the named blocks feature with the following stack:
- Ember CLI: 3.26.1
- Ember Source: 3.26.1
I am trying to re-create a (simple) version of the Bootstrap NavBar, and inside the “container” element, I want to yield the brand, etc.
However, as soon as I add this to the HBS:
{{yield to="brand" @fluid}}
I get the following error:
`Expecting 'CLOSE_RAW_BLOCK', 'CLOSE', 'CLOSE_UNESCAPED', 'CLOSE_SEXPR', 'ID', 'OPEN_BLOCK_PARAMS', got 'DATA'`
This project in the Glimmer Playground illustrates the problem in a nutshell: Error Example
Has anyone else run into this issue? And could you please point me to a workaround/solution?
Thanks.