-
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.
Merge branch 'main' of https://github.com/Sybit-Education/bk2wi-2023
- Loading branch information
Showing
4 changed files
with
43 additions
and
19 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
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,22 +1,14 @@ | ||
<script setup lang="ts"> | ||
</script> | ||
|
||
|
||
<template> | ||
<aside> | ||
|
||
<div id="filterbox"> | ||
<p>[filtern]</p> | ||
</div> | ||
|
||
</aside> | ||
<BButton @click="click">Show OffCanvas</BButton> | ||
<BOffcanvas v-model="show" /> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import {ref} from 'vue' | ||
const show = ref(false) | ||
|
||
<style scoped> | ||
</style> | ||
const click = () => { | ||
show.value = !show.value | ||
} | ||
</script> |
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<script setup lang="ts"> | ||
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']) | ||
</script> | ||
|
||
<template> | ||
|
||
<BContainer> | ||
<BRow> | ||
<BCol> | ||
<FilterSidebar /> | ||
</BCol > | ||
<!-- <BCol> | ||
<SearchBar :searchQuery="searchQuery" @searchQuery="searchQuery = $event" /> | ||
</BCol> --> | ||
<!-- <BCol> | ||
icon | ||
</BCol > --> | ||
</BRow> | ||
<BRow lg = "12"> | ||
<HomeContent :entries="entries" :foundEntry="searchQuery" /> | ||
</BRow> | ||
</BContainer> | ||
|
||
</template> |