cell.vue 268 B

12345678910111213141516
  1. <template>
  2. <div class="fm-virtual-table__row-cell"
  3. :style="{
  4. width: width,
  5. 'min-height': (rowHeight - 0.5) + 'px',
  6. }"
  7. >
  8. <slot name="default"></slot>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. props: ['width', 'rowHeight']
  14. }
  15. </script>