由于App.vue在最外层包含:<div id="app"> </div>
例如需要修改的页面:a.vue
<template>
<div class="test">
</div>
</template>
<style scoped>
.test{
position: relative或fixed;
height: 100%;
width: 100%;
background: #f6f7fa;
}
#如果当前页面内容超过一屏幕,可以滑动,就用relative。
#如果页面内容不足一屏幕高度,就用fixed,这会使其填满
</style>
网友评论