48 lines
749 B
Vue
48 lines
749 B
Vue
<template>
|
|
<div class="doc-circulation ailist-wrapper">
|
|
<keep-alive :include="['List']">
|
|
<component ref="component" :is="component" :instance="instance" :dict="dict"></component>
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import List from './components/List'
|
|
|
|
export default {
|
|
name: 'AppMaterialLibrary',
|
|
label: '素材库',
|
|
|
|
props: {
|
|
instance: Function,
|
|
dict: Object
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
component: 'List',
|
|
params: {},
|
|
include: []
|
|
}
|
|
},
|
|
|
|
components: {
|
|
List
|
|
},
|
|
|
|
mounted () {
|
|
},
|
|
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.doc-circulation {
|
|
height: 100%;
|
|
background: #F3F6F9;
|
|
overflow: auto;
|
|
}
|
|
</style>
|