mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 10:08:52 +08:00
26 lines
413 B
Vue
26 lines
413 B
Vue
<template>
|
|
<div>
|
|
<main-menu />
|
|
<keep-alive include="Editor">
|
|
<router-view id="main-view" />
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MainMenu from './MainMenu'
|
|
import '@/assets/styles/scrollbars.css'
|
|
|
|
export default {
|
|
name: 'Main',
|
|
components: { MainMenu }
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
#main-view {
|
|
margin-top: 68px;
|
|
height: calc(100vh - 68px);
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|