UNPKG

mine-h5-ui

Version:

一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍

17 lines (16 loc) 302 B
const t = (o) => { if (!o) throw new Error("URL 必传"); return new Promise((r, n) => { const e = new Image(); e.src = o, e.onerror = n, e.onload = () => { r({ image: e, width: e.width, height: e.height }); }; }); }; export { t as useImgInfo };