26 lines
397 B
Vue
26 lines
397 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
<script></script>
|
|
<style lang="less">
|
|
#app {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
// width: 1920px;
|
|
// height: 1080px;
|
|
padding-top: 15px;
|
|
padding-left: 13px;
|
|
padding-bottom: 13px;
|
|
padding-right: 13px;
|
|
box-sizing: border-box;
|
|
background-color: #04134c;
|
|
overflow: hidden;
|
|
}
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|