1
export const $ = (name) => document.querySelector(name)
2
3 4
export const getContainerSize = (dom) => ({ width: dom.getBoundingClientRect().width,
5 6
height: dom.getBoundingClientRect().height })
7
8
export const getImg = (name) => require(`@/assets/images/${name}`)