// vue3.0深度选择器-并不生效
:deep(类名) {
...样式
}
文档我看了

// 遂添加如下配置-被爆锤-仍然无效
defineOptions({
styleIsolation: 'shared'
});
// 需要添加额外的script标签
<script>
export default {
options: {
styleIsolation: 'shared', // 解除样式隔离
}
}
</script>
想不到吧😂,我也没想到。