北京经济技术开发区经开区虚拟城市项目-【前端】-移动端Web
lixuliang
2024-02-04 4818f01f5950b28e9b95fc939211d4e3854870f7
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 "./layerPanel2.vue";
export default {
  components: {
    layerPanel,
  },
  data() {
    return {
      state: store.layerPanel,
    };
  },
};
</script>