uniapp修改uni-ui组件样式(对微信小程序/H5有效,vue3)

寻找要修改的样式

使用开发者工具找到具体要修改的class类名

修改

javascript 复制代码
<style lang="scss">
	//.nav为上一级的class
	.nav::v-deep .uni-navbar--border {
		border-bottom-style: none !important;
	}
</style>

完整代码

javascript 复制代码
<template>
	<view>
		<uni-nav-bar :fixed="true" dark background-color="#007AFF" title="安贞心康" class="nav" />
		<image src="/static/images/myimages/temp/home.jpg" mode="widthFix" style="width:100%;"></image>
	</view>
</template>

<script>
	export default {
		data() {
			return {

			}
		},
		onLoad() {
			//uni.hideNavigationBar();
		},
		onShow() {
			uni.setNavigationBarTitle({
				title: 'home'
			})
		},
		methods: {


		}
	}
</script>

<style lang="scss">
	//.nav为上一级的class
	.nav::v-deep .uni-navbar--border {
		border-bottom-style: none !important;
	}
</style>
相关推荐
PedroQue991 天前
uni-router v2.0.0:四大功能拆分为插件,按需加载
前端·uni-app
不法2 天前
uniapp map地图导航/地图路线
前端·vue.js·uni-app
淡淡的幼稚3 天前
【YFIOs】从传感芯片到表格曲线
uni-app·.net
宠友信息3 天前
多端即时通讯源码技术实践,Redis路由、MySQL持久化与Socket接入
spring boot·websocket·mysql·uni-app
宠友信息3 天前
Spring Boot与异步审核构建仿小红书源码内容发布全流程
java·数据库·spring boot·redis·mysql·oracle·uni-app
蜡台3 天前
uniapp vue2 转 vue3
前端·javascript·uni-app·vue3·vue2
2501_916008893 天前
iOS 证书管理最佳实践 从创建到续期的完整指南
android·ios·小程序·https·uni-app·iphone·webview
敖行客 Allthinker4 天前
UniApp iOS APNs 推送证书一站式配置
uni-app·mac
梦曦i4 天前
uni-router新推useUniEventChannel,彻底解决页面通信难题
前端·uni-app
宠友信息4 天前
内容社区源码多端数据协议与 Spring Boot 状态流转实现思路
java·spring boot·websocket·uni-app