TuanAppShim.vue 429 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view
  3. class="shim"
  4. :style="{
  5. height: $store.getters.statusBarHeight + add * 1 + 'px',
  6. background: bg
  7. }"
  8. style="width: 100%"
  9. ></view>
  10. </template>
  11. $store.getters.statusBarHeight
  12. <script>
  13. export default {
  14. props: {
  15. add: {
  16. type: [Number, String],
  17. default: 0,
  18. },
  19. bg: {
  20. type: String,
  21. default: "#fff"
  22. }
  23. },
  24. };
  25. </script>
  26. <style lang="less">
  27. </style>