index.vue 250 B

123456789101112131415161718192021
  1. <template>
  2. <div class="full-width-table">
  3. <slot></slot>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'FullWidthTable'
  9. }
  10. </script>
  11. <style lang="less">
  12. .full-width-table {
  13. table {
  14. display: table;
  15. width: 100%;
  16. }
  17. }
  18. </style>