WContent.vue 573 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="w-content">
  3. <slot/>
  4. </div>
  5. </template>
  6. <style lang="scss" scoped>
  7. .w-content {
  8. position: absolute;
  9. top: 72px;
  10. left: 0;
  11. right: 0;
  12. bottom: 0;
  13. overflow: auto;
  14. background-repeat: no-repeat;
  15. background-position: center;
  16. background-image: url("../../../statics/images/bg1.jpg");
  17. background-size: cover;
  18. .w-container {
  19. min-height: 500px;
  20. }
  21. }
  22. </style>
  23. <script>
  24. export default {
  25. name: 'WContent',
  26. }
  27. </script>