BContentRow.vue 480 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="b-section-body">
  3. <div class="b-l" style="width: 700px;">
  4. <BRowHead></BRowHead>
  5. <BRowBody></BRowBody>
  6. </div>
  7. <div class="b-r"></div>
  8. </div>
  9. </template>
  10. <script>
  11. import BRowHead from 'components/contentRow/BRowHead'
  12. import BRowBody from 'components/contentRow/BRowBody'
  13. export default {
  14. components: {
  15. BRowHead,
  16. BRowBody
  17. }
  18. }
  19. </script>
  20. <style lang="stylus" scoped>
  21. .b-section-body
  22. zoom 1
  23. .b-l
  24. float left
  25. width 700px
  26. </style>