flaschengeist-frontend/src/views/BarView.vue

35 lines
702 B
Vue
Raw Normal View History

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