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.
37 lines
742 B
37 lines
742 B
|
2 years ago
|
'use strict';
|
||
|
|
|
||
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
|
||
|
|
require('../../../utils/index.js');
|
||
|
|
require('../../../hooks/index.js');
|
||
|
|
var runtime = require('../../../utils/vue/props/runtime.js');
|
||
|
|
var index = require('../../../hooks/use-size/index.js');
|
||
|
|
|
||
|
|
const descriptionProps = runtime.buildProps({
|
||
|
|
border: {
|
||
|
|
type: Boolean,
|
||
|
|
default: false
|
||
|
|
},
|
||
|
|
column: {
|
||
|
|
type: Number,
|
||
|
|
default: 3
|
||
|
|
},
|
||
|
|
direction: {
|
||
|
|
type: String,
|
||
|
|
values: ["horizontal", "vertical"],
|
||
|
|
default: "horizontal"
|
||
|
|
},
|
||
|
|
size: index.useSizeProp,
|
||
|
|
title: {
|
||
|
|
type: String,
|
||
|
|
default: ""
|
||
|
|
},
|
||
|
|
extra: {
|
||
|
|
type: String,
|
||
|
|
default: ""
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
exports.descriptionProps = descriptionProps;
|
||
|
|
//# sourceMappingURL=description.js.map
|