子组件:
<template>
<teleport to="body">
<div>
<h4>示例</h4>
</div>
</teleport>
</template>
父组件:
<style lang="less" scoped>
:deep(h4) {
color: red !important;
}
</style>
组件封装过程中突然发现的这个问题,请问有什么比较好的解决方法?
具体场景:子组件是弹窗基础公共组件,所以封装使用了teleport标签,默认to指向body,在父组件引用时有时会有微调内部样式的需求。
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…