37 lines
453 B
Vue
37 lines
453 B
Vue
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
<script>
|
|
import router from "@/router";
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
},
|
|
mounted() {
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
#app {
|
|
height:100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
html{
|
|
height:100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
body{
|
|
height: 100%;
|
|
max-height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
</style>
|