初始化
This commit is contained in:
30
frontend/packages/BigScreenComponentMag/MenuContent.vue
Normal file
30
frontend/packages/BigScreenComponentMag/MenuContent.vue
Normal 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>
|
||||
Reference in New Issue
Block a user