You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
581 B
Vue
38 lines
581 B
Vue
<template>
|
|
<div class="right-screen-list-wrap">
|
|
<SourceList
|
|
:catalog-info="catalogInfo"
|
|
:type="type"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import SourceList from 'packages/SourceList'
|
|
export default {
|
|
name: '',
|
|
props: {
|
|
catalogInfo: {
|
|
type: Object,
|
|
default: () => ({
|
|
isAll: false,
|
|
page: {}
|
|
})
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'bigScreen'
|
|
}
|
|
},
|
|
components: { SourceList },
|
|
data () {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.right-screen-list-wrap {
|
|
width: 100%;
|
|
}
|
|
</style>
|