snowy-designer
Version:
基于Epic-Designer-Pro版本的设计器,可视化开发页面表单
15 lines (14 loc) • 321 B
JavaScript
import { defineComponent as n, createElementBlock as o, openBlock as p, toDisplayString as r } from "vue";
const l = /* @__PURE__ */ n({
__name: "text",
props: {
text: { default: "" }
},
setup(t) {
const e = t;
return (a, c) => (p(), o("span", null, r(e.text), 1));
}
});
export {
l as default
};