blank.vue 245 B

123456789101112131415
  1. <template>
  2. <view
  3. class="blank"
  4. :style="{ height: size + 'px' }"
  5. ></view>
  6. </template>
  7. <script setup>
  8. import { ref } from 'vue';
  9. const props = defineProps(['size'])
  10. const size = ref(props.size)
  11. </script>
  12. <style lang="less">
  13. </style>