vue3移动端设置单页面body的背景色

<script setup>
import { onBeforeUnmount, onMounted } from 'vue';

// 设置页面背景颜色
onMounted(() => {
    document
        .querySelector("body")
        .setAttribute("style", "background-color: #fff");
});
// 页面销毁时清空背景色
onBeforeUnmount(() => {
    document.querySelector("body").removeAttribute("style")
})
</script>

 

posted @ 2023-09-27 08:39  deajax  阅读(531)  评论(0编辑  收藏  举报