Added base layout for sidebar, playerbar, homepage and actionbar
parent
b59f0f088f
commit
829f4aaf99
|
|
@ -1,12 +1,17 @@
|
|||
<template>
|
||||
<div id="app">
|
||||
<DockableSidebar />
|
||||
<router-view></router-view>
|
||||
<PlayerBar />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DockableSidebar from './layouts/DockableSidebar'
|
||||
import PlayerBar from './layouts/PlayerBar'
|
||||
export default {
|
||||
name: 'jukebox'
|
||||
name: 'jukebox',
|
||||
components: {DockableSidebar, PlayerBar}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<div>
|
||||
ActionBar
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'ActionBar'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<section>
|
||||
Sidebar
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'DockableSidebar'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
|
@ -1,12 +1,15 @@
|
|||
<template>
|
||||
<div>
|
||||
Home page
|
||||
</div>
|
||||
<section>
|
||||
<ActionBar />
|
||||
HomePage
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ActionBar from './ActionBar'
|
||||
export default {
|
||||
name: 'HomePage'
|
||||
name: 'HomePage',
|
||||
components: {ActionBar}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<section>
|
||||
Player
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'PlayerBar'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
Loading…
Reference in New Issue