1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +08:00
Files
sqliteviz/src/views/MainView.vue
2020-10-09 15:07:38 +02:00

26 lines
428 B
Vue

<template>
<div>
<main-menu />
<keep-alive include="Editor">
<router-view id="main-view" />
</keep-alive>
</div>
</template>
<script>
import MainMenu from '@/components/MainMenu'
import '@/assets/styles/scrollbars.css'
export default {
name: 'MainView',
components: { MainMenu }
}
</script>
<style scoped>
#main-view {
margin-top: 68px;
height: calc(100vh - 68px);
overflow-y: auto;
}
</style>