Gap.vue 265 B

123456789101112131415161718
  1. <template>
  2. <u-gap :height="height" :bgColor="bgColor"></u-gap>
  3. </template>
  4. <script>
  5. export default {
  6. props: {
  7. height: {
  8. type: [String, Number],
  9. default: 16
  10. },
  11. bgColor: {
  12. type: String,
  13. default: '#f4f4f5'
  14. }
  15. }
  16. }
  17. </script>