初始化
This commit is contained in:
40
frontend/packages/BigScreenMag/MenuContent.vue
Normal file
40
frontend/packages/BigScreenMag/MenuContent.vue
Normal file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<div class="right-screen-list-wrap">
|
||||
<BigScreenList
|
||||
:catalog-info="catalogInfo"
|
||||
:type="type"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import BigScreenList from 'data-room-ui/BigScreenList'
|
||||
export default {
|
||||
name: '',
|
||||
props: {
|
||||
catalogInfo: {
|
||||
type: Object,
|
||||
default: () => ({
|
||||
isAll: false,
|
||||
page: {}
|
||||
})
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
default: 'bigScreenCatalog'
|
||||
}
|
||||
},
|
||||
components: { BigScreenList },
|
||||
data () {
|
||||
return {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.right-screen-list-wrap {
|
||||
width: 100%;
|
||||
// height: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user