This commit is contained in:
2023-08-11 10:45:20 +08:00
commit 161ca982f3
31850 changed files with 2706500 additions and 0 deletions

29
node_modules/vant/lib/cell/shared.js generated vendored Normal file
View File

@ -0,0 +1,29 @@
"use strict";
exports.__esModule = true;
exports.cellProps = void 0;
var cellProps = {
icon: String,
size: String,
center: Boolean,
isLink: Boolean,
required: Boolean,
iconPrefix: String,
titleStyle: null,
titleClass: null,
valueClass: null,
labelClass: null,
title: [Number, String],
value: [Number, String],
label: [Number, String],
arrowDirection: String,
border: {
type: Boolean,
default: true
},
clickable: {
type: Boolean,
default: null
}
};
exports.cellProps = cellProps;