tables.vue 554 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="">
  3. <el-table :data="gridData" :key="Math.random()" max-height="450" border>
  4. <el-table-column type="index" width="80" label="序号" />
  5. <el-table-column property="name" label="记录" show-overflow-tooltip/>
  6. </el-table>
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. // 接受父组件参数,配置默认值
  11. const props = defineProps({
  12. gridData: {
  13. type: Array,
  14. default: () => [],
  15. },
  16. });
  17. </script>
  18. <style lang="scss">
  19. /* @import url(); 引入css类 */
  20. </style>