App.vue
481 Bytes
<template>
<div id="app">
<div id="nav">
</div>
<router-view/>
</div>
</template>
<style>
html, body, #app {
width: 100%;
height: 100%;
-webkit-user-select:none;
-moz-user-select:none;
overflow: hidden;
}
* {
margin: 0px;
padding: 0px;
list-style: none;
}
.cesium-viewer-toolbar, .cesium-viewer-animationContainer, .cesium-viewer-bottom, .cesium-viewer-fullscreenContainer {
display: none !important;
}
</style>