WContent.vue 608 B

123456789101112131415161718192021222324252627282930
  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-color: #EEEEEE;
  17. background-image: url("../../../statics/images/bg1.jpg");
  18. background-size: cover;
  19. .w-container {
  20. min-height: 500px;
  21. }
  22. }
  23. </style>
  24. <script>
  25. export default {
  26. name: 'WContent',
  27. }
  28. </script>