1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="right-screen-list-wrap">
- <ComponentList
- :catalog-info="catalogInfo"
- />
- </div>
- </template>
- <script>
- import ComponentList from 'packages/ComponentList'
- export default {
- name: '',
- props: {
- catalogInfo: {
- type: String,
- default: ''
- }
- },
- components: { ComponentList },
- data () {
- return {
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .right-screen-list-wrap {
- width: 100%;
- // height: 100%;
- }
- </style>
|