[hub] add SearchInput

This commit is contained in:
Prateeksha Singh
2018-08-23 13:52:41 +05:30
parent 6e5b9a8f9b
commit d7d2bb261b
4 changed files with 62 additions and 24 deletions

View File

@@ -0,0 +1,32 @@
<template>
<div class="hub-search-container">
<input
type="text"
class="form-control"
:placeholder="placeholder"
:value="value"
@input="on_input">
</div>
</template>
<script>
export default {
props: {
placeholder: String,
value: String,
on_search: Function
},
methods: {
on_input(event) {
this.$emit('input', event.target.value);
this.on_search();
// TODO: Debouncing doesn't fire search
// frappe.utils.debounce(this.on_search, 500);
}
}
};
</script>
<style lang="scss" scoped>
</style>