Blank.vue 358 B

123456789101112131415161718192021222324
  1. <template>
  2. <div
  3. class="blank"
  4. :style="{height:modelData.height*2+'rpx',backgroundColor:modelData.backgroundColor}"
  5. ></div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'Blank',
  10. props: {
  11. modelData: {
  12. type: Object,
  13. default: () => {
  14. return {}
  15. }
  16. }
  17. }
  18. }
  19. </script>
  20. <style scoped>
  21. </style>