Skip to content

Instantly share code, notes, and snippets.

@BalachandraTejas
Created April 20, 2020 09:05
Show Gist options
  • Save BalachandraTejas/f1abd161bb8f9c3582a50014b8413df9 to your computer and use it in GitHub Desktop.
Save BalachandraTejas/f1abd161bb8f9c3582a50014b8413df9 to your computer and use it in GitHub Desktop.
<template>
<input
@keyup="e => props.search(props.debounce)(e)"
:class="props.theme.input"
:name="props.column"
type="text"
:placeholder="props.display('filterBy', {column: props.getHeading(props.column)})"
autocomplete="off"
/>
</template>
<script>
export default {
name: "MyTextFilter",
props: ['props']
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment