feat(filters): query-based filter logic #2177

Merged
konrad merged 62 commits from feature/better-filter-syntax-layered into main 2024-03-10 12:01:48 +00:00
1 changed files with 18 additions and 0 deletions
Showing only changes of commit 0d12d72b73 - Show all commits

View File

@ -0,0 +1,18 @@
<script setup lang="ts">
import FilterInput from '@/components/project/partials/FilterInput.vue'
import {ref} from "vue";
function initState(value: string) {
return {
value,
}
}
const value = ref('')
</script>
<template>
<Story title="Filter Input">
<FilterInput v-model="value"/>
</Story>
</template>