安琪酵母(西藏)益生菌信息采集中心智能实验室
longyvfengyun
2023-06-30 09ab26b8df36c5ebd7cfc20a862011fb98681588
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import {ref} from "vue";
 
/**
 * 机房容器信息
 */
const homeContentModule = ()=> {
  const homeContentDom = ref(null);
  const cWidth = ref(0);
  const cHeight = ref(0);
  const dWidth = ref(2500);
  const dHeight = ref(1389);
  /**
   * 设置容器的大小
   */
  const setContainerSize = ()=>{
    cWidth.value = homeContentDom.value.offsetWidth;
    cHeight.value = homeContentDom.value.offsetHeight;
  }
 
  return {homeContentDom, cWidth, cHeight, dWidth, dHeight, setContainerSize};
}
 
export default homeContentModule;