yanzhen-design-vue
Version:
27 lines (26 loc) • 780 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const Row = require("ant-design-vue/es/grid/Row");
const utilsVue = require("@yanzhen-libs/utils-vue");
require("../../../hooks/index.cjs");
const index = require("../../../hooks/use-namespace/index.cjs");
const ns = index.useNamespace("row");
const rowOptions = {
ns,
class: ns.b(),
name: ns.defineVNodeName()
};
const rowName = rowOptions.name;
const AntRowProps = utilsVue.propsSeparate(Row.rowProps());
const rowProps = utilsVue.buildProps({
...AntRowProps.props,
text: String
});
const rowEmits = {
...AntRowProps.emits
};
exports.AntRowProps = AntRowProps;
exports.rowEmits = rowEmits;
exports.rowName = rowName;
exports.rowOptions = rowOptions;
exports.rowProps = rowProps;