flaschengeist-frontend/src/views/BarView.vue

30 lines
568 B
Vue
Raw Normal View History

2019-12-21 07:20:25 +00:00
<template>
2020-01-14 21:01:24 +00:00
<div>
<TitleBar />
<v-content>
<SearchBar />
<CreditLists></CreditLists>
</v-content>
</div>
2019-12-21 07:20:25 +00:00
</template>
<script>
2020-01-14 21:01:24 +00:00
import TitleBar from '@/components/TitleBar'
import CreditLists from '@/components/baruser/CreditLists'
// eslint-disable-next-line no-unused-vars
import axios from 'axios'
import SearchBar from '../components/baruser/SearchBar'
export default {
name: 'BarView',
components: { SearchBar, CreditLists, TitleBar },
created() {},
data() {
return {}
},
methods: {}
}
2019-12-21 07:20:25 +00:00
</script>
<style scoped>
</style>