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>
相关推荐
敖行客 Allthinker18 小时前
UniApp iOS APNs 推送证书一站式配置
uni-app·mac
梦曦i20 小时前
uni-router新推useUniEventChannel,彻底解决页面通信难题
前端·uni-app
宠友信息20 小时前
内容社区源码多端数据协议与 Spring Boot 状态流转实现思路
java·spring boot·websocket·uni-app
2501_915918411 天前
PerfDog 太贵?iOS 性能监控工具的功能对比与选择
android·ios·小程序·https·uni-app·iphone·webview
PedroQue991 天前
uni-router新推useUniEventChannel,彻底解决页面通信难题
前端·uni-app
2501_915909062 天前
IPA 深度混淆是什么意思?从混淆强度到实际效果的解读
android·ios·小程序·https·uni-app·iphone·webview
蜡台2 天前
修改Uniapp input 组件不刷新视图问题
前端·uni-app·input
宸翰3 天前
uni-app 设置 Android 底部虚拟导航栏背景色
android·前端·uni-app
千逐683 天前
UniApp 鸿蒙实战:音视频与多媒体处理完全指南
华为·uni-app·harmonyos·鸿蒙
handsome09163 天前
windows开发uniapp如何上架app到app store
uni-app·上架