Newer
Older
urbanLifeline_YanAn / src / views / DialogTabs / component / xxinformation.vue
@鲁yixuan 鲁yixuan on 8 Oct 425 bytes updata
<template>
  <div id="xxinformation">详细信息</div>
</template>

<script setup name="xxinformation">
import { ref, reactive, toRefs, onMounted } from 'vue';

const { proxy } = getCurrentInstance();

onMounted(() => {});
</script>

<style lang="scss" scoped>
#xxinformation {
  width: 100%;
  height: 100%;
  text-align: center;

  #monitorPipe {
    width: 1300px;
    height: 570px;
    margin-top: 10px;
  }
}
</style>