vue-admin-core
Version:
A Component Library for Vue 3
54 lines (51 loc) • 955 B
JavaScript
import { buildProps } from 'element-plus/es/utils/vue/props/runtime';
const configProviderProps = 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"
}
});
export { configProviderProps };
//# sourceMappingURL=config-provider-props.mjs.map