MenuContent.vue 625 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <div class="right-screen-list-wrap">
  3. <BigScreenList
  4. :catalog-info="catalogInfo"
  5. :type="type"
  6. />
  7. </div>
  8. </template>
  9. <script>
  10. import BigScreenList from 'packages/BigScreenList'
  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: 'bigScreenCatalog'
  24. }
  25. },
  26. components: { BigScreenList },
  27. data () {
  28. return {
  29. }
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. .right-screen-list-wrap {
  35. width: 100%;
  36. // height: 100%;
  37. }
  38. </style>