myClient.vue 474 字节
<template>
    <div class="index_wrap">
        <Top :activeIndex="activeIndex"></Top>
        <router-view></router-view>
        <Bottom></Bottom>
    </div>
</template>
<script>
import Top from "../../common/top";
import Bottom from "../../common/bottom";
export default {
    data(){
        return{
            activeIndex:1
        }
    },
    methods:{},
    components:{
        Top,
        Bottom
    },
    mounted(){

    },
}
</script>
<style scoped>

</style>