You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
645 B
33 lines
645 B
|
2 years ago
|
import '../../../utils/index.mjs';
|
||
|
|
import '../../../hooks/index.mjs';
|
||
|
|
import { buildProps } from '../../../utils/vue/props/runtime.mjs';
|
||
|
|
import { useSizeProp } from '../../../hooks/use-size/index.mjs';
|
||
|
|
|
||
|
|
const descriptionProps = buildProps({
|
||
|
|
border: {
|
||
|
|
type: Boolean,
|
||
|
|
default: false
|
||
|
|
},
|
||
|
|
column: {
|
||
|
|
type: Number,
|
||
|
|
default: 3
|
||
|
|
},
|
||
|
|
direction: {
|
||
|
|
type: String,
|
||
|
|
values: ["horizontal", "vertical"],
|
||
|
|
default: "horizontal"
|
||
|
|
},
|
||
|
|
size: useSizeProp,
|
||
|
|
title: {
|
||
|
|
type: String,
|
||
|
|
default: ""
|
||
|
|
},
|
||
|
|
extra: {
|
||
|
|
type: String,
|
||
|
|
default: ""
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
export { descriptionProps };
|
||
|
|
//# sourceMappingURL=description.mjs.map
|