How do I get the parent context from within a component in glimmer?
问题 Let's say I have a simple component in glimmer with a list of items <todo-list @items={{ items }}></todo-list> template.hbs <ul> {{#each @items key="@index" as |item|}} <li onclick={{ action clickme }}>{{ item }}</li> {{/each}} </ul> component.ts import Component, { tracked } from '@glimmer/component'; export default class TodoList extends Component { constructor(options) { super(options); } clickme() { // how do I access the parent context from here? } } Even if I pass in an action from the