MenuContent.vue 460 B

12345678910111213141516171819202122232425262728293031
  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. }
  29. </style>