mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-23 23:01:44 +00:00
21 lines
338 B
Vue
21 lines
338 B
Vue
<template>
|
|
<main id="main_content">
|
|
<TheMiddleSection />
|
|
<TheDownloadTab />
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import TheMiddleSection from '@components/TheMiddleSection.vue'
|
|
import TheDownloadTab from '@components/TheDownloadTab.vue'
|
|
|
|
export default {
|
|
components: {
|
|
TheMiddleSection,
|
|
TheDownloadTab
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |