Skip to content

Commit

Permalink
BarListView erstellen
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazar73a committed Jan 8, 2024
1 parent 0b6485a commit e67f5e6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/views/BarListView.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<script setup lang="ts">
import BarList from '../components/bar/BarList.vue'
</script>

<template>

<BContainer>
<BRow>
<!-- <BCol>
<FilterSidebar />
</BCol > -->
<!-- <BCol>
<SearchBar :searchQuery="searchQuery" @searchQuery="searchQuery = $event" />
</BCol> -->
<!-- <BCol>
icon
</BCol > -->
</BRow>
<BRow>
<HomeContent :entries="entries" :foundEntry="searchQuery" />

Check failure on line 21 in src/views/BarListView.vue

View workflow job for this annotation

GitHub Actions / build (18.x)

Property 'entries' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<...>, never>; ... 10 more ...; $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...ar...'.

Check failure on line 21 in src/views/BarListView.vue

View workflow job for this annotation

GitHub Actions / build (18.x)

Property 'searchQuery' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<...>, never>; ... 10 more ...; $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...ar...'.
</BRow>
</BContainer>

</template>

0 comments on commit e67f5e6

Please sign in to comment.