29 lines
494 B
Vue
29 lines
494 B
Vue
<template>
|
|
<div id="app">
|
|
<div class="top"></div>
|
|
<div class="content">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
@import "./assets/index.css";
|
|
#app {
|
|
font-family: "Avenir", Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
}
|
|
.top {
|
|
width: 100%;
|
|
height: 60px;
|
|
background: rgb(13, 41, 65);
|
|
}
|
|
.content {
|
|
width: 100%;
|
|
height: calc(100% - 120px);
|
|
}
|
|
</style>
|