1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| import '../../../utils/index.mjs';
| import { buildProps } from '../../../utils/vue/props/runtime.mjs';
|
| const RowJustify = [
| "start",
| "center",
| "end",
| "space-around",
| "space-between",
| "space-evenly"
| ];
| const RowAlign = ["top", "middle", "bottom"];
| const rowProps = buildProps({
| tag: {
| type: String,
| default: "div"
| },
| gutter: {
| type: Number,
| default: 0
| },
| justify: {
| type: String,
| values: RowJustify,
| default: "start"
| },
| align: {
| type: String,
| values: RowAlign,
| default: "top"
| }
| });
|
| export { RowAlign, RowJustify, rowProps };
| //# sourceMappingURL=row.mjs.map
|
|