2020-06-29 18:23:56 +00:00
|
|
|
<template>
|
|
|
|
<div id="middle_section">
|
|
|
|
<TheSearchBar />
|
|
|
|
<TheContent />
|
2020-07-18 16:06:07 +00:00
|
|
|
<BaseLoadingPlaceholder id="search_placeholder" text="Searching..." :hidden="true" />
|
2020-06-29 18:23:56 +00:00
|
|
|
</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'
|
2020-06-29 18:23:56 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
TheContent,
|
2020-07-18 16:06:07 +00:00
|
|
|
TheSearchBar,
|
|
|
|
BaseLoadingPlaceholder
|
2020-06-29 18:23:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|