yuang-framework-ui-pc
Version:
yuang-framework-ui-pc Library
30 lines (29 loc) • 841 B
JavaScript
;
const vue = require("vue");
const props = require("./props");
const _sfc_main = vue.defineComponent({
name: "ElePage",
props: props.pageProps
});
const _export_sfc = (sfc, props2) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props2) {
target[key] = val;
}
return target;
};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("div", {
class: vue.normalizeClass([
"ele-page",
{ "is-plain": _ctx.plain },
{ "is-multi-card": _ctx.multiCard },
{ "is-flex-table": _ctx.flexTable },
{ "is-hide-footer": _ctx.hideFooter }
])
}, [
vue.renderSlot(_ctx.$slots, "default")
], 2);
}
const index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
module.exports = index;