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.
31 lines
487 B
Vue
31 lines
487 B
Vue
<template>
|
|
<div class="right-screen-list-wrap">
|
|
<ComponentList
|
|
:catalog-info="catalogInfo"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ComponentList from 'data-room-ui/ComponentList'
|
|
export default {
|
|
name: '',
|
|
props: {
|
|
catalogInfo: {
|
|
type: String,
|
|
default: 'component'
|
|
}
|
|
},
|
|
components: { ComponentList },
|
|
data () {
|
|
return { }
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.right-screen-list-wrap {
|
|
width: 100%;
|
|
// height: 100%;
|
|
}
|
|
</style>
|