1
1
Fork 0
portfolio/repos/ember-select-light.md
2021-02-25 23:22:34 -06:00

1.1 KiB

tags templateEngineOverride title description date pinned
repos md ember-select-light The simplest Ember <select> there is. 2020-11-05 true

Fork from Github

ember-select-light is an Ember Addon focused on simplicity. Just powerful enough to offer expected baseline functionality while being easy to implement, style, and make accessible.

ember-select-light can be easily styled with Tailwind

This addon is Octane ready and follows ember-component-pattern's for how to best write a Select Element. Additionally, it was coded completely with TDD (Test-Driven Design) so you can expect quality test coverage!

Getting Started

ember install ember-select-light

Example Usage

<SelectLight
  @value="turtle"
  @options=(array "turtle" "tortoise")
  @change={{action "handleChange"}} />

Far more examples are available on GitHub.