less使用 /deep/
.content /deep/ .el-button {
height: 60px;
}
scss使用::v-deep
.content ::v-deep .el-button {
height: 60px;
}
stylus使用>>>
.content>>>.el-button {
height: 60px;
}
.content /deep/ .el-button {
height: 60px;
}
.content ::v-deep .el-button {
height: 60px;
}
.content>>>.el-button {
height: 60px;
}