MenuContent.vue 479 B

1234567891011121314151617181920212223242526272829303132
  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 'packages/ComponentList'
  10. export default {
  11. name: '',
  12. props: {
  13. catalogInfo: {
  14. type: String,
  15. default: ''
  16. }
  17. },
  18. components: { ComponentList },
  19. data () {
  20. return {
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .right-screen-list-wrap {
  27. width: 100%;
  28. // height: 100%;
  29. }
  30. </style>