41 lines
629 B
Vue

<template>
<div class="right-screen-list-wrap">
<BigScreenList
:catalog-info="catalogInfo"
:type="type"
/>
</div>
</template>
<script>
import BigScreenList from 'data-room-ui/BigScreenList'
export default {
name: '',
props: {
catalogInfo: {
type: Object,
default: () => ({
isAll: false,
page: {}
})
},
type: {
type: String,
default: 'bigScreenCatalog'
}
},
components: { BigScreenList },
data () {
return {
}
}
}
</script>
<style lang="scss" scoped>
.right-screen-list-wrap {
width: 100%;
// height: 100%;
}
</style>