TuanAppShim.vue 523 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view
  3. class="tuan-app-shim-container" :style="{
  4. height: (systermInfo.statusBarHeight || 0) + add * 1 + 'px',
  5. background: bg
  6. }" style="width: 100%"
  7. >
  8. </view>
  9. </template>
  10. <script>
  11. import { mapGetters } from 'vuex'
  12. export default {
  13. name: 'TuanAppShim',
  14. props: {
  15. add: {
  16. type: [Number, String],
  17. default: 0
  18. },
  19. bg: {
  20. type: String,
  21. default: 'transparent'
  22. }
  23. },
  24. computed: {
  25. ...mapGetters([ 'systermInfo' ])
  26. }
  27. }
  28. </script>
  29. <style lang="less">
  30. .tuan-app-shim-container {}
  31. </style>