WContent.vue 466 B

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