chore(filters): add histoire story file
This commit is contained in:
parent
1827102a0a
commit
0d12d72b73
18
frontend/src/components/input/FilterInput.story.vue
Normal file
18
frontend/src/components/input/FilterInput.story.vue
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user