index.vue 169 B

12345678910111213141516
  1. <template>
  2. <table>
  3. <tr>
  4. <td>
  5. <slot />
  6. </td>
  7. </tr>
  8. </table>
  9. </template>
  10. <style scoped>
  11. table {
  12. width: 100%;
  13. height: 100%;
  14. }
  15. </style>