vue3.x中使用深度选择器 /deep/ >>>
在vue2中使用深度选择器可以使用旧版写法:/deep/ input{}>>> input{}在vue3.x中的写法新版写法:.user-center {&:deep(.tableheader) {background: #f0f6fc;color: #000;}}.user-center {::v-deep .tableheader {background: #f0f6
·
在vue2中使用深度选择器可以使用
旧版写法:
/deep/ input{
}
>>> input{
}
在vue3.x中的写法
新版写法:
.user-center {
&:deep(.tableheader) {
background: #f0f6fc;
color: #000;
}
}
.user-center {
::v-deep .tableheader {
background: #f0f6fc;
color: #000;
}
}
更多推荐
已为社区贡献47条内容
所有评论(0)