MenuContent.vue 487 B

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