share.vue 522 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="share">
  3. <div class="header"></div>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'share',
  9. props: {
  10. reportTarget: {
  11. type: Object,
  12. default() {
  13. return {};
  14. },
  15. },
  16. },
  17. data() {
  18. return {};
  19. },
  20. mounted() {},
  21. methods: {},
  22. };
  23. </script>
  24. <style lang="scss" scoped>
  25. .share {
  26. width: 100%;
  27. height: auto;
  28. background: url('../assets/shareBack.png') no-repeat;
  29. background-size: 100% 100%;
  30. position: absolute;
  31. top: 0;
  32. z-index: 9;
  33. }
  34. </style>