ember-power-select icon indicating copy to clipboard operation
ember-power-select copied to clipboard

ember 3.14 render not work

Open 85636682 opened this issue 5 years ago • 0 comments

render not work and no error. ember 3.14 ember-power-select: "^4.0.0-beta.6",

<PowerSelect
          @searchEnabled={{true}}
          @searchField="name"
          @options={{this.model.shops}}
          @selected={{this.selectedShop}}
          @onChange={{action "selectShop"}}
          as |shop|
        >
          {{shop.name}}
        </PowerSelect>
model() {
    return RSVP.hash({
      shops: this.get('store').findAll('shop')
    });
  }

85636682 avatar Dec 04 '19 06:12 85636682