Skip to content

Commit

Permalink
chore: list of Verleih
Browse files Browse the repository at this point in the history
  • Loading branch information
stritti committed Dec 13, 2023
1 parent 2eef3f2 commit ba020b4
Showing 1 changed file with 9 additions and 26 deletions.
35 changes: 9 additions & 26 deletions src/views/VerleihListView.vue
Original file line number Diff line number Diff line change
@@ -1,34 +1,17 @@
<script setup lang="ts">
// import Verleihlistcontent from '@/components/Verleihlistcontent.vue'
import FilterSidebar from '@/components/FilterSidebar.vue'
import SearchBar from '@/components/SearchBar.vue'
import type { BRow } from 'bootstrap-vue-next'
import { ref } from 'vue'
const searchQuery = ref('')
const entries = ref([ "test", '1234', '567'])
import VerleihList from '../components/verleih/VerleihList.vue'
</script>

<template>

<BContainer>
<BRow>
<BCol lg = "4">
<FilterSidebar />
</BCol >
<BCol lg = "4">
<SearchBar :searchQuery="searchQuery" @searchQuery="searchQuery = $event" />

</BCol>
<BCol lg = "4">
icon
</BCol >
</BRow>
<BRow lg = "12">
<HomeContent :entries="entries" :foundEntry="searchQuery" />
</BRow>
</BContainer>
<div id="verleihList">
<BBreadcrumb>
<BBreadcrumbItem to="/"> Home </BBreadcrumbItem>
<BBreadcrumbItem to="/verleih"> Verleihe </BBreadcrumbItem>
</BBreadcrumb>

<verleih-list />
</div>

</template>

0 comments on commit ba020b4

Please sign in to comment.