index.vue 653 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
<template>
    <div class="display">
				<router-view></router-view>
        <!-- <businessContainer></businessContainer> -->
    </div>
</template>

<script>
// import businessContainer from "../Business"
// import { mapMutations } from 'vuex'
export default {
    name: "Display",
    components:{
        // businessContainer //复用业务容器
    },
    created: function () {
        console.log("进入快照界面")
        // this.setMode('display')
    },
    destroyed: function () {
        // this.setMode('normal')
    },
    methods: {
        // ...mapMutations([
        // 'setMode'
        // ])
    }
}
</script>

<style>

</style>