first commit
This commit is contained in:
44
node_modules/vant/es/cell-group/CellGroup.mjs
generated
vendored
Normal file
44
node_modules/vant/es/cell-group/CellGroup.mjs
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
import { defineComponent, mergeProps as _mergeProps, createVNode as _createVNode, Fragment as _Fragment } from "vue";
|
||||
import { truthProp, createNamespace, BORDER_TOP_BOTTOM } from "../utils/index.mjs";
|
||||
import { useScopeId } from "../composables/use-scope-id.mjs";
|
||||
const [name, bem] = createNamespace("cell-group");
|
||||
const cellGroupProps = {
|
||||
title: String,
|
||||
inset: Boolean,
|
||||
border: truthProp
|
||||
};
|
||||
var stdin_default = defineComponent({
|
||||
name,
|
||||
inheritAttrs: false,
|
||||
props: cellGroupProps,
|
||||
setup(props, {
|
||||
slots,
|
||||
attrs
|
||||
}) {
|
||||
const renderGroup = () => {
|
||||
var _a;
|
||||
return _createVNode("div", _mergeProps({
|
||||
"class": [bem({
|
||||
inset: props.inset
|
||||
}), {
|
||||
[BORDER_TOP_BOTTOM]: props.border && !props.inset
|
||||
}]
|
||||
}, attrs, useScopeId()), [(_a = slots.default) == null ? void 0 : _a.call(slots)]);
|
||||
};
|
||||
const renderTitle = () => _createVNode("div", {
|
||||
"class": bem("title", {
|
||||
inset: props.inset
|
||||
})
|
||||
}, [slots.title ? slots.title() : props.title]);
|
||||
return () => {
|
||||
if (props.title || slots.title) {
|
||||
return _createVNode(_Fragment, null, [renderTitle(), renderGroup()]);
|
||||
}
|
||||
return renderGroup();
|
||||
};
|
||||
}
|
||||
});
|
||||
export {
|
||||
cellGroupProps,
|
||||
stdin_default as default
|
||||
};
|
||||
Reference in New Issue
Block a user