Loading... ## 问题描述 deep 样式穿透不生效 ```scss :deep(.el-dialog__title) { font-size: 14px; font-weight: 700; } ``` ## 产生原因 vue3 可以不使用根节点,但组件不可以直接处于 ```<template>``` 的子级 例: ```vue <template> <ElDialog /> </template> ``` 这样会导致 deep 不生效 ## 解决方式 正确做法是: ```vue <template> <div> <ElDialog /> </div> </template> ``` 最后修改:2022 年 12 月 07 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏