2019-12-21 07:20:25 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<TitleBar/>
|
2019-12-26 09:31:36 +00:00
|
|
|
<v-content>
|
2020-01-14 18:57:45 +00:00
|
|
|
<SearchBar/>
|
|
|
|
<CreditLists></CreditLists>
|
2019-12-26 09:31:36 +00:00
|
|
|
</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";
|
2019-12-26 09:31:36 +00:00
|
|
|
import SearchBar from "../components/baruser/SearchBar";
|
2019-12-21 07:20:25 +00:00
|
|
|
export default {
|
|
|
|
name: "BarView",
|
2019-12-26 09:31:36 +00:00
|
|
|
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-29 16:56:50 +00:00
|
|
|
|
2019-12-21 07:20:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|