reimplement originator filter

This commit is contained in:
Vri 🌈 2023-06-29 10:29:26 +02:00
parent 6669f44642
commit 217a9d934d
Signed by: vrifox
GPG key ID: D40098E5B60B2197
4 changed files with 63 additions and 37 deletions

View file

@ -4,6 +4,7 @@ import { onUpdated, ref } from 'vue';
let searchValue = ref('')
let searchType = ref('')
function submit(type: string) { searchType = ref(type) }
onUpdated(() => updateSearch(searchValue, searchType))
</script>