2020-06-29 18:23:56 +00:00
|
|
|
<template>
|
|
|
|
<div style="height: inherit;">
|
2020-07-06 16:34:43 +00:00
|
|
|
<BaseLoadingPlaceholder id="start_app_placeholder" text="Connecting to the server..." />
|
2020-06-29 18:23:56 +00:00
|
|
|
|
|
|
|
<TheSidebar />
|
|
|
|
<TheMainContent />
|
|
|
|
|
|
|
|
<TheTrackPreview />
|
2020-07-06 16:34:43 +00:00
|
|
|
<TheQualityModal />
|
2020-08-03 17:26:16 +00:00
|
|
|
|
|
|
|
<TheContextMenu />
|
2020-06-29 18:23:56 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import TheSidebar from '@components/TheSidebar.vue'
|
|
|
|
import TheMainContent from '@components/TheMainContent.vue'
|
|
|
|
import TheTrackPreview from '@components/TheTrackPreview.vue'
|
2020-07-06 16:34:43 +00:00
|
|
|
import TheQualityModal from '@components/TheQualityModal.vue'
|
|
|
|
import BaseLoadingPlaceholder from '@components/BaseLoadingPlaceholder.vue'
|
2020-08-03 17:26:16 +00:00
|
|
|
import TheContextMenu from '@components/TheContextMenu.vue'
|
2020-06-29 18:23:56 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
TheSidebar,
|
|
|
|
TheMainContent,
|
2020-07-06 16:34:43 +00:00
|
|
|
TheTrackPreview,
|
|
|
|
TheQualityModal,
|
2020-08-03 17:26:16 +00:00
|
|
|
BaseLoadingPlaceholder,
|
|
|
|
TheContextMenu
|
2020-06-29 18:23:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|