JewelryMall/admin/node_modules/element-plus/es/components/statistic/src/statistic.mjs
2026-02-14 19:29:15 +08:00

58 lines
1.1 KiB
JavaScript

import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
const statisticProps = buildProps({
/**
* @description Setting the decimal point
*/
decimalSeparator: {
type: String,
default: "."
},
/**
* @description Sets the thousandth identifier
*/
groupSeparator: {
type: String,
default: ","
},
/**
* @description numerical precision
*/
precision: {
type: Number,
default: 0
},
/**
* @description Custom numerical presentation
*/
formatter: Function,
/**
* @description Numerical content
*/
value: {
type: definePropType([Number, Object]),
default: 0
},
/**
* @description Sets the prefix of a number
*/
prefix: String,
/**
* @description Sets the suffix of a number
*/
suffix: String,
/**
* @description Numeric titles
*/
title: String,
/**
* @description Styles numeric values
*/
valueStyle: {
type: definePropType([String, Object, Array])
}
});
export { statisticProps };
//# sourceMappingURL=statistic.mjs.map