Blame view

HHECS.Web/src/components/MapModule/flow/index.js 261 Bytes
胡菁 authored
1
export const $ = (name) => document.querySelector(name)
胡菁 authored
2
胡菁 authored
3
4
export const getContainerSize = (dom) => ({
  width: dom.getBoundingClientRect().width,
胡菁 authored
5
6
  height: dom.getBoundingClientRect().height
})
胡菁 authored
7
胡菁 authored
8
export const getImg = (name) => require(`@/assets/images/${name}`)