2020-06-29 18:23:56 +00:00
|
|
|
<template>
|
|
|
|
<main id="main_content">
|
|
|
|
<TheMiddleSection />
|
2020-07-14 20:27:48 +00:00
|
|
|
<TheDownloadTab />
|
2020-06-29 18:23:56 +00:00
|
|
|
</main>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import TheMiddleSection from '@components/TheMiddleSection.vue'
|
2020-07-14 20:27:48 +00:00
|
|
|
import TheDownloadTab from '@components/TheDownloadTab.vue'
|
2020-06-29 18:23:56 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-07-14 20:27:48 +00:00
|
|
|
TheMiddleSection,
|
|
|
|
TheDownloadTab
|
2020-06-29 18:23:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|