chore(filters): add histoire story file

This commit is contained in:
kolaente 2024-02-17 16:33:55 +01:00
parent 1827102a0a
commit 0d12d72b73
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 18 additions and 0 deletions

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>