Newer
Older
HuangJiPC / src / pages / views / pumpStation / basicData.vue
@zhangdeliang zhangdeliang on 21 Jun 661 bytes update
<template>
  <div id="basicData">
    <Maps></Maps>
    <TuLi />
    <BasicRight />
  </div>
</template>
<script>
import { ref, reactive, toRefs, onMounted } from "vue";
import Maps from "./components/basicDataMap.vue";
import TuLi from "./components/basicTuLi.vue";
import BasicRight from "./components/basicRight.vue";
export default {
  name: "basicData",
  components: {
    Maps,
    TuLi,
    BasicRight,
  },
  setup() {
    onMounted(() => {});
    return {};
  },
  computed: {},
  methods: {},
};
</script>
<style lang="less" scoped>
#basicData {
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0px 0px 300px #fff inset;
}
</style>