今天遇到了給單個元件的body設定背景顏色不起作用,原因是每個元件樣式作用於僅在那個模板的div裡,所以採用下面的方面,給這個頁面做一個假的body,程式碼如下
<template>
<div class="body-bg"></div>
</template>
<style scoped lang="scss">
.body-bg {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow-y: auto;
background-color: #fff;
}
</style>
本作品採用《CC 協議》,轉載必須註明作者和本文連結