1
0
Fork 0
mirror of synced 2024-07-28 01:25:57 +12:00
budibase/packages/standard-components/src/DataSearch.svelte

16 lines
252 B
Svelte
Raw Normal View History

2020-05-08 09:15:09 +12:00
<script>
export let _bb
export let model
let searchValue = ""
function search() {
2020-05-18 22:01:09 +12:00
const SEARCH_URL = _bb.api.get(``)
2020-05-08 09:15:09 +12:00
}
</script>
<div>
2020-05-18 22:01:09 +12:00
<input type="text" bind:value={searchValue} />
2020-05-08 09:15:09 +12:00
<button on:click={search}>Search</button>
</div>