chore(filters): add histoire story file

This commit is contained in:
kolaente
2024-03-09 19:06:52 +01:00
parent 1827102a0a
commit 0d12d72b73
@@ -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>