JewelryMall/admin/node_modules/element-plus/lib/components/row/src/row.js
2026-02-14 19:29:15 +08:00

50 lines
858 B
JavaScript

'use strict';
var runtime = require('../../../utils/vue/props/runtime.js');
const RowJustify = [
"start",
"center",
"end",
"space-around",
"space-between",
"space-evenly"
];
const RowAlign = ["top", "middle", "bottom"];
const rowProps = runtime.buildProps({
/**
* @description custom element tag
*/
tag: {
type: String,
default: "div"
},
/**
* @description grid spacing
*/
gutter: {
type: Number,
default: 0
},
/**
* @description horizontal alignment of flex layout
*/
justify: {
type: String,
values: RowJustify,
default: "start"
},
/**
* @description vertical alignment of flex layout
*/
align: {
type: String,
values: RowAlign
}
});
exports.RowAlign = RowAlign;
exports.RowJustify = RowJustify;
exports.rowProps = rowProps;
//# sourceMappingURL=row.js.map