glimmer-vm icon indicating copy to clipboard operation
glimmer-vm copied to clipboard

ref trace for inspector

Open patricklx opened this issue 1 year ago • 0 comments
trafficstars


function test() {
  return 'test';
}

let Test = <template>
  {{@x}}
</template>

function myHelper(v) {
  return v + ' more'
}


let MyTemplateOnly = <template>
  Hello World from Template Only Component
  {{#let 1 test as |_ x|}}
    <Test @x={{(myHelper (x))}}/>
  {{/let}}
  {{yield to='outlet'}}
</template>

image

patricklx avatar Oct 16 '24 12:10 patricklx