首页 资源列表 文章列表

解决:::v-deep usage as a combinator has been deprecated. Use :deep(<inner-selector>) instead 的警告

警告内容

::v-deep usage as a combinator has been deprecated. Use :deep(<inner-selector>) instead

本警告的主要问题在于 ::v-deep 作为组合器的用法废弃,要使用 :deep(<inner-selector>) 语法来代替;

原始代码

// 表格表头的背景色;
  ::v-deep .el-table th {
    background-color: #e6f1f9;
  }

修改后代码

// 表格表头的背景色;
  ::v-deep(.el-table th) {
    background-color: #e6f1f9;
  }