uniapp设置背景色的方法:首先找到并打开根目录的App.vue文件;然后在style块中添加代码为“page{background-color: #f5f5f5;}”即可。
本教程操作环境:windows7系统、uni-app2.5.1版本,该方法适用于所有品牌电脑。
推荐(免费):uni-app开发教程
uni-app 有一个全局背景色设置方法
在根目录的 App.vue 文件里的 style 块中添加代码即可
<style> /*每个页面公共css */ page{ background-color: #f5f5f5; } </style>
单个页面窗口背景色设置如:在页面的vue文件中设置
<style> page { background-color: #f00; } </style>
Atas ialah kandungan terperinci uniapp怎么设置背景色. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!