在vue中可以通过以下两种方式修改第三方组件样式:

1、全局覆盖修改

<style lang="less">
  .modal {
    .ant-modal-header {
      border-bottom-width: 0; 
    }
  }
</style>

2、局部覆盖修改

<style lang="less" scoped>
  .modal {
    :global(.ant-modal-header) {
      border-bottom-width: 0;
    }
  }

</style>

新时代农民工

Logo

前往低代码交流专区

更多推荐