-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |