使用vant 2版本时候van-tab组件想修改默认样式, '标签1’加粗
1. 要在组件外边包裹一个标签, 设置class名字box
2. 方法一 :使用>>>无效
<style lang="scss" rel="stylesheet/scss" scoped>
//方法一 :使用>>>无效
//.all_Box >>> .van-tab__text {
//font-weight: bold !important;
//}
<style>
3. 方法二:使用 /deep/ 不能解析
<style lang="scss" rel="stylesheet/scss" scoped>
//使用 /deep/ 不能解析
//.all_Box /deep/ .van-tab__text {
//font-weight: bold !important;
//}
<style>
3. 方法二:使用::v-deep 可以,设置成功
<style lang="scss" rel="stylesheet/scss" scoped>
//使用 ::v-deep
.all_Box ::v-deep .van-tab__text {
font-weight: bold !important;
}
<style>