mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
39 lines (38 loc) • 1.04 kB
JavaScript
import { defineComponent as n, createBlock as a, openBlock as s, Transition as i, withCtx as r, createElementBlock as l, createCommentVNode as m, createElementVNode as e, toDisplayString as c } from "vue";
import d from "./loading-turn.svg.js";
/*!
* mine-h5-ui v2.15.0
* Copyright (c) 2025 biaov
* @license MIT
*/
const p = {
key: 0,
class: "me-show-loading"
}, _ = { class: "content" }, u = { class: "text" }, k = /* @__PURE__ */ n({
name: "MeShowLoading",
__name: "index",
props: {
visible: { type: Boolean },
message: {}
},
setup(f) {
return (t, o) => (s(), a(i, { name: "fade" }, {
default: r(() => [
t.visible ? (s(), l("div", p, [
e("div", _, [
o[0] || (o[0] = e("img", {
src: d,
alt: "loading-turn",
class: "icon"
}, null, -1)),
e("span", u, c(t.message), 1)
])
])) : m("", !0)
]),
_: 1
}));
}
});
export {
k as default
};