@wocwin/t-ui-plus
Version:
Page level components developed based on Element Plus.
32 lines (29 loc) • 681 B
JavaScript
import { defineComponent, createElementBlock, openBlock, normalizeClass, renderSlot } from 'vue';
var _sfc_main = /* @__PURE__ */ defineComponent({
...{
name: "TLayoutPageItem"
},
__name: "index",
props: {
isNoMargin: {
type: Boolean,
default: false
}
},
setup(__props) {
return (_ctx, _cache) => {
return openBlock(), createElementBlock(
"section",
{
class: normalizeClass(["t_layout_page_item", { page_item_no_margin: __props.isNoMargin }])
},
[
renderSlot(_ctx.$slots, "default")
],
2
/* CLASS */
);
};
}
});
export { _sfc_main as default };