初始化
This commit is contained in:
38
frontend/packages/SourceMag/MenuContent.vue
Normal file
38
frontend/packages/SourceMag/MenuContent.vue
Normal file
@@ -0,0 +1,38 @@
|
||||
<template>
|
||||
<div class="right-screen-list-wrap">
|
||||
<SourceList
|
||||
:catalog-info="catalogInfo"
|
||||
:type="type"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import SourceList from 'data-room-ui/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%;
|
||||
// height: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user