ProjectManagement_frontend/src/App.vue

33 lines
401 B
Vue
Raw Normal View History

2022-06-27 10:05:27 +08:00
<template>
<router-view></router-view>
</template>
<script>
export default {
name: 'App',
components: {
}
}
</script>
<style>
#app {
height:100%;
max-height: 100%;
2022-06-29 14:04:44 +08:00
width: 100%;
max-width: 100%;
2022-06-27 10:05:27 +08:00
}
html{
height:100%;
max-height: 100%;
2022-06-29 14:04:44 +08:00
width: 100%;
max-width: 100%;
2022-06-27 10:05:27 +08:00
}
body{
height: 100%;
max-height: 100%;
2022-06-29 14:04:44 +08:00
width: 100%;
max-width: 100%;
2022-06-27 10:05:27 +08:00
margin:0;
padding:0;
}
</style>