primevue-mirror/src/App.vue

29 lines
560 B
Vue
Raw Normal View History

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