vue3框架中让table合计居中对齐

第一步:给它加一个类名 center-table 如下:
        :data="datas.shows"
      max-height="600px"
      show-summary
      stripe
      border
      style="width: 100%"
      :header-cell-style="{ textAlign: 'center' }"
      :cell-style="{ textAlign: 'center' }"
      class="center-table"
    >
第二步: 使用v-deep选择器
:deep(.center-table td), 
:deep(.center-table th) {
  text-align: center !important;
}
效果:
 

你可能感兴趣的:(vue.js,前端,javascript)