my-gap.vue 320 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="gap" :style="{height:height + 'rpx', backgroundColor:bg}">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. name:"my-gap",
  8. data() {
  9. return {
  10. };
  11. },
  12. props:{
  13. height:{
  14. type:Number
  15. },
  16. bg:{}
  17. }
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. .gap{
  22. width: 100%;
  23. }
  24. </style>