mpvue + Vant Weapp 开发小程序改变 Vant 组件样式
<template><div class="container"><van-button type="primary" size="large" custom-class=&
·
<template>
<div class="container">
<van-button type="primary" size="large" custom-class="login-btn">登录</van-button>
</div>
</template>
<style>
.login-btn {
background-color: #ee3f4d!important;
border: 1PX solid #ee3f4d!important;
}
</style>
<style scoped>
</style>
重点就是组件上的属性 custom-class
(根节点样式类)和 !important
(优先级,因为根节点样式类是加在 class
开头的),还有就是不要放在 <style scoped>
下,不然会无法修改。
参考资料
更多推荐
已为社区贡献3条内容
所有评论(0)