table-column.vue 209 B

1234567891011121314151617181920
  1. <template>
  2. <div class="app-container">
  3. <slot></slot>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "mTableColumn"
  9. };
  10. </script>
  11. <script setup>
  12. </script>
  13. <style lang="scss" scoped>
  14. </style>