15 lines
197 B
Vue
15 lines
197 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
#app {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: #020308;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|