2018-12-04 07:08:40 +00:00
|
|
|
<template>
|
2018-12-06 18:26:49 +00:00
|
|
|
<div class="layout-wrapper">
|
2018-12-06 18:45:40 +00:00
|
|
|
<app-topbar />
|
|
|
|
<app-menu />
|
2018-12-06 18:26:49 +00:00
|
|
|
<div class="layout-content">
|
|
|
|
<router-view/>
|
2018-12-06 18:45:40 +00:00
|
|
|
<app-footer />
|
2018-12-06 18:26:49 +00:00
|
|
|
</div>
|
2018-12-04 07:08:40 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-12-06 18:26:49 +00:00
|
|
|
<script>
|
2018-12-06 18:45:40 +00:00
|
|
|
import AppTopBar from '@/AppTopBar.vue';
|
|
|
|
import AppMenu from '@/AppMenu.vue';
|
|
|
|
import AppFooter from '@/AppFooter.vue';
|
2018-12-06 18:26:49 +00:00
|
|
|
|
2018-12-06 18:45:40 +00:00
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
'app-topbar': AppTopBar,
|
|
|
|
'app-menu': AppMenu,
|
|
|
|
'app-footer': AppFooter
|
|
|
|
}
|
2018-12-04 07:08:40 +00:00
|
|
|
}
|
2018-12-06 18:26:49 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import './assets/styles/app.scss';
|
2018-12-04 07:08:40 +00:00
|
|
|
</style>
|