element-plus
Version:
A Component Library for Vue 3
68 lines (67 loc) • 1.31 kB
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const require_runtime = require("../../../utils/vue/props/runtime.js");
//#region ../../packages/components/statistic/src/statistic.ts
/**
* @deprecated Removed after 3.0.0, Use `StatisticProps` instead.
*/
const statisticProps = require_runtime.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: require_runtime.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: require_runtime.definePropType([
String,
Object,
Array,
Boolean
]),
default: void 0
}
});
//#endregion
exports.statisticProps = statisticProps;
//# sourceMappingURL=statistic.js.map