index.vue 506 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="app-container">
  3. <div style="margin:0 0 5px 20px">
  4. Fixed header, sorted by header order,
  5. </div>
  6. <fixed-thead />
  7. <div style="margin:30px 0 5px 20px">
  8. Not fixed header, sorted by click order
  9. </div>
  10. <unfixed-thead />
  11. </div>
  12. </template>
  13. <script>
  14. import FixedThead from './components/FixedThead'
  15. import UnfixedThead from './components/UnfixedThead'
  16. export default {
  17. name: 'DynamicTable',
  18. components: { FixedThead, UnfixedThead }
  19. }
  20. </script>