123456789101112131415161718192021222324 |
- <template>
- <div
- class="blank"
- :style="{height:modelData.height*2+'rpx',backgroundColor:modelData.backgroundColor}"
- ></div>
- </template>
- <script>
- export default {
- name: 'Blank',
- props: {
- modelData: {
- type: Object,
- default: () => {
- return {}
- }
- }
- }
- }
- </script>
- <style scoped>
- </style>
|