20 lines
213 B
Vue

<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style lang="scss">
#app {
width: 100%;
height: 100vh;
overflow: hidden;
}
</style>