mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
22 lines (21 loc) • 412 B
JavaScript
/*!
* mine-h5-ui v2.15.0
* Copyright (c) 2025 biaov
* @license MIT
*/
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
};