MenuContent.vue 604 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="right-screen-list-wrap">
  3. <SourceList
  4. :catalog-info="catalogInfo"
  5. :type="type"
  6. />
  7. </div>
  8. </template>
  9. <script>
  10. import SourceList from 'data-room-ui/SourceList'
  11. export default {
  12. name: '',
  13. props: {
  14. catalogInfo: {
  15. type: Object,
  16. default: () => ({
  17. isAll: false,
  18. page: {}
  19. })
  20. },
  21. type: {
  22. type: String,
  23. default: 'bigScreen'
  24. }
  25. },
  26. components: { SourceList },
  27. data () {
  28. return {}
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .right-screen-list-wrap {
  34. width: 100%;
  35. // height: 100%;
  36. }
  37. </style>