element-plus
Version:
A Component Library for Vue 3
84 lines (79 loc) • 2.68 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var vue = require('vue');
var card = require('./card.js');
var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
var useGlobalConfig = require('../../config-provider/src/hooks/use-global-config.js');
var index = require('../../../hooks/use-namespace/index.js');
const _sfc_main = vue.defineComponent({
...{
name: "ElCard"
},
__name: "card",
props: card.cardProps,
setup(__props) {
const globalConfig = useGlobalConfig.useGlobalConfig("card");
const ns = index.useNamespace("card");
return (_ctx, _cache) => {
var _a;
return vue.openBlock(), vue.createElementBlock(
"div",
{
class: vue.normalizeClass([
vue.unref(ns).b(),
vue.unref(ns).is(`${_ctx.shadow || ((_a = vue.unref(globalConfig)) == null ? void 0 : _a.shadow) || "always"}-shadow`)
])
},
[
_ctx.$slots.header || _ctx.header ? (vue.openBlock(), vue.createElementBlock(
"div",
{
key: 0,
class: vue.normalizeClass([vue.unref(ns).e("header"), _ctx.headerClass])
},
[
vue.renderSlot(_ctx.$slots, "header", {}, () => [
vue.createTextVNode(
vue.toDisplayString(_ctx.header),
1
)
])
],
2
)) : vue.createCommentVNode("v-if", true),
vue.createElementVNode(
"div",
{
class: vue.normalizeClass([vue.unref(ns).e("body"), _ctx.bodyClass]),
style: vue.normalizeStyle(_ctx.bodyStyle)
},
[
vue.renderSlot(_ctx.$slots, "default")
],
6
),
_ctx.$slots.footer || _ctx.footer ? (vue.openBlock(), vue.createElementBlock(
"div",
{
key: 1,
class: vue.normalizeClass([vue.unref(ns).e("footer"), _ctx.footerClass])
},
[
vue.renderSlot(_ctx.$slots, "footer", {}, () => [
vue.createTextVNode(
vue.toDisplayString(_ctx.footer),
1
)
])
],
2
)) : vue.createCommentVNode("v-if", true)
],
2
);
};
}
});
var Card = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["__file", "/home/runner/work/element-plus/element-plus/packages/components/card/src/card.vue"]]);
exports["default"] = Card;
//# sourceMappingURL=card2.js.map