deemixer/src/components/TheMiddleSection.vue

24 lines
496 B
Vue
Raw Normal View History

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