index.js 261 Bytes
export const $ = (name) => document.querySelector(name)

export const getContainerSize = (dom) => ({
  width: dom.getBoundingClientRect().width,
  height: dom.getBoundingClientRect().height
})

export const getImg = (name) => require(`@/assets/images/${name}`)