如何为 Gridsome/vue.js 中的不同页面指定不同的背景颜色?我已经尝试过确定 css 的范围,但它不适用于body或html选择器。
问问题
236 次
2 回答
0
您可以将 props 传递给 layouts。例如传递一个像
<template>
<Layout :background="white">
<section>Add page content here</section>
</Layout>
</template>
然后写你的CSS
[background=white] section {
background: #fff !important;
}
于 2020-11-10T18:38:06.307 回答