App.vue
514 Bytes
<template>
<div class="vue-app-inner-view">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'App'
};
</script>
<style>
.vue-app-container {
overflow: auto;
}
.nav_menu {
margin-bottom: 0;
}
.container, .main_container {
height: 100%;
}
footer {
display: none;
bottom: 10px;
right: 10px;
}
.vue-app-inner-view {
padding: 0 10px 60px 10px;
}
</style>