錯誤示范1(會影響其他頁面的樣式):
<style>
.avue-crud__menu {
display: none;
}
</style>
錯誤示范2(樣式無效):
<style lang="scss" scoped>
.avue-crud__menu {
display: none;
}
</style>
正確示范:
<style lang="scss" scoped>
/deep/ .avue-crud__menu {
display: none;
}
</style>
或者:
<style lang="scss" scoped>
::v-deep .el-divider--vertical {
height: auto;
}
</style>