index.js 252 Bytes Edit Raw Blame History 1 2 3 4 5 6 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}`)