yuang-framework-ui-pc
Version:
yuang-framework-ui-pc Library
19 lines (18 loc) • 537 B
JavaScript
import { defineComponent, createElementBlock, openBlock } from "vue";
const _sfc_main = defineComponent({
name: "EleTest"
});
const _export_sfc = (sfc, props) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props) {
target[key] = val;
}
return target;
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("div", null, "测试");
}
const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
export {
index as default
};