@zhsz/cool-design-crud
Version:
17 lines (16 loc) • 318 B
JavaScript
import { defineComponent, createVNode } from "vue";
const index = /* @__PURE__ */ defineComponent({
name: "cl-flex1",
setup(_, {
attrs
}) {
return () => {
return createVNode("div", {
"class": ["cl-flex1", attrs.class].join(" ")
}, null);
};
}
});
export {
index as default
};