初始化

This commit is contained in:
砂糖
2025-11-08 10:38:36 +08:00
commit 3beeec7296
1626 changed files with 198488 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<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>