Refactor into useQueryable and Search components

This commit is contained in:
BlossomiShymae
2024-10-14 18:31:36 -05:00
parent 766ec716f9
commit 793cd3e120
14 changed files with 113 additions and 165 deletions

10
components/Search.vue Normal file
View File

@@ -0,0 +1,10 @@
<script setup lang="ts">
const model = defineModel();
</script>
<template>
<div class="input-group" style="max-width: 400px;">
<input type="text" class="form-control border-light border-opacity-25"
placeholder="Search" name="Search" v-model="model" />
</div>
</template>