1
0
Fork 0
mirror of synced 2024-09-08 13:41:09 +12:00
budibase/packages/standard-components/src/DataSearch.svelte

18 lines
257 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() {
const SEARCH_URL =
_bb.api.get(``);
}
</script>
<div>
<input type="text" bind:value={searchValue}>
<button on:click={search}>Search</button>
</div>