index.vue 625 Bytes
<template>
    <LayoutContent :breads="[{url: 'resource-list.html', title: '资源位列表'}, {title: '资源位编辑'}]">
        <home-page></home-page>
    </LayoutContent>
</template>
<script>
    import home from './home.vue'

    export default {
        data() {
            return {

            };
        },
        mounted() {

        },
        beforeDestroy() {

        },
        methods: {

        },
        components: {
            'home-page': home
        }
    };
</script>

<style>
    .miniapp {
        display: inline-block;
        margin-top: 30px;
        margin-bottom: 30px;
    }
</style>