ember-ref-modifier icon indicating copy to clipboard operation
ember-ref-modifier copied to clipboard

Ember Ref Modifier

Results 3 ember-ref-modifier issues
Sort by recently updated
recently updated
newest added

We could go this ways: ------------------- ```hbs ``` ```ts class Component { @ref("field") node = null; } ``` where `{{ref "field"}}` will be transformed to `{{ref this "field"}}`, and `@ref`...

question

// background - https://github.com/emberjs/ember.js/pull/18698#issuecomment-579991774 https://github.com/lifeart/ember-ref-modifier/blob/master/tests/dummy/app/components/glimmer-ref.js since we setting property in next runloop, such code may fail ```hbs ``` in other side, callback may solve issue ```hbs ``` ```js @action setMenuElement(node)...

help wanted
question

That is, doing: ```hbs ``` Leads to: ``` Error: You attempted to access the 'element' property on a Glimmer Component, but that property does not exist in Ember.js applications, it...

wontfix