vd/frontend/src/App.vue
2019-01-15 09:22:35 +08:00

27 lines
255 B
Vue

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: "App"
};
</script>
<style lang="less">
.size {
width: 100%;
height: 100%;
}
html,
body {
.size;
overflow: hidden;
}
#app {
.size;
}
</style>