2020-06-29 18:23:56 +00:00
|
|
|
<template>
|
|
|
|
<main id="main_content">
|
2020-07-27 20:01:57 +00:00
|
|
|
<!-- <router-link to="/tracklist/132">Go to Foo</router-link> -->
|
|
|
|
<!-- <router-view></router-view> -->
|
2020-06-29 18:23:56 +00:00
|
|
|
<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-07-27 20:01:57 +00:00
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
console.log(this.$route)
|
2020-06-29 18:23:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|