WContent.vue 509 B

123456789101112131415161718192021222324252627
  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: url("../../../statics/images/bg1.jpg") no-repeat center;
  15. background-size: cover;
  16. .w-container {
  17. min-height: 500px;
  18. }
  19. }
  20. </style>
  21. <script>
  22. export default {
  23. name: 'WContent',
  24. }
  25. </script>