北京经济技术开发区经开区虚拟城市项目-【前端】-移动端Web
lixuliang
2024-04-26 09f448bc9dec772dafaeb04f0c60a0d722035226
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
    <div v-show="state.show">
        <layerPanel></layerPanel>
    </div>
</template>
 
<script>
import store from "@/utils/store.js";
import layerPanel from "./layerPanel.vue";
export default{
    components:{
        layerPanel
    },
    data(){
        return{
            state:store.layerPanel
        }
    }
}
</script>