1.0.1 • Published 4 years ago

@woden/svelte-select v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

svelte-select

Installation

Npm

npm install --save @woden/svelte-select

Yarn

yarn add @woden/svelte-select

Basic Usage

<script>
import Select from '@woden/svelte-select'

const myAjaxFunction = async () => {
  // Fetch some data from API
}
</script>

<label for="data">Data</label>
<Select
  id="data"
  url="http://api.mywebsite.com/endpoint"  
/>