deemixer/src/components/TheMiddleSection.vue
2020-07-18 18:06:07 +02:00

24 lines
496 B
Vue

<template>
<div id="middle_section">
<TheSearchBar />
<TheContent />
<BaseLoadingPlaceholder id="search_placeholder" text="Searching..." :hidden="true" />
</div>
</template>
<script>
import TheContent from '@components/TheContent.vue'
import TheSearchBar from '@components/TheSearchBar.vue'
import BaseLoadingPlaceholder from '@components/BaseLoadingPlaceholder.vue'
export default {
components: {
TheContent,
TheSearchBar,
BaseLoadingPlaceholder
}
}
</script>
<style>
</style>