vue-admin-core
Version:
A Component Library for Vue 3
56 lines (52 loc) • 992 B
JavaScript
'use strict';
var runtime = require('element-plus/es/utils/vue/props/runtime');
const configProviderProps = runtime.buildProps({
/**
* @description 字典名称字段
*/
dictLabelKey: {
type: String,
default: "description"
},
/**
* @description 字典值字段
*/
dictValueKey: {
type: String,
default: "value"
},
pageSizeKey: {
type: String,
default: "pageSize"
},
currentPageKey: {
type: String,
default: "currentPage"
},
totalKey: {
type: String,
default: "totalElements"
},
listKey: {
type: String,
default: "content"
},
dateFormat: {
type: String,
default: "YYYY-MM-DD"
},
dateTimeFormat: {
type: String,
default: "YYYY-MM-DD HH:mm:ss"
},
timeFormat: {
type: String,
default: "HH:mm:ss"
},
elTagTypeKey: {
type: String,
default: "elTagType"
}
});
exports.configProviderProps = configProviderProps;
//# sourceMappingURL=config-provider-props.js.map