Add a component to scan books

This commit is contained in:
2026-02-05 18:30:24 +01:00
parent 928fd9ddac
commit f73defdad3
10 changed files with 143 additions and 12 deletions

View File

@@ -1,6 +1,7 @@
<script setup>
import { ref } from 'vue'
import { useRouter } from 'vue-router'
import Modal from './Modal.vue'
const searchterm = ref("");
const router = useRouter();
@@ -26,6 +27,7 @@
</span>
</button>
</div>
<Modal/>
</div>
</div>
</template>