index.vue 257 B

123456789101112131415161718
  1. <template>
  2. <view class="table-title">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. </script>
  8. <style scoped lang="scss">
  9. .table-title {
  10. width: calc(100% - 32rpx);
  11. margin:16rpx auto ;
  12. font-size: 32rpx;
  13. color: #333;
  14. }
  15. </style>