WhiteSpace.vue 254 B

12345678910111213141516
  1. <template>
  2. <div :style="{ height: height }"></div>
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent } from "vue";
  6. export default defineComponent({
  7. props: {
  8. height: {
  9. type: [Number,String],
  10. default: 0,
  11. },
  12. }
  13. });
  14. </script>