<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>
下,不然会无法修改。
评论区