123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import defprops from '../../libs/config/props';
- export default {
- props: {
-
- startVal: {
- type: [String, Number],
- default: defprops.countTo.startVal
- },
-
- endVal: {
- type: [String, Number],
- default: defprops.countTo.endVal
- },
-
- duration: {
- type: [String, Number],
- default: defprops.countTo.duration
- },
-
- autoplay: {
- type: Boolean,
- default: defprops.countTo.autoplay
- },
-
- decimals: {
- type: [String, Number],
- default: defprops.countTo.decimals
- },
-
- useEasing: {
- type: Boolean,
- default: defprops.countTo.useEasing
- },
-
- decimal: {
- type: [String, Number],
- default: defprops.countTo.decimal
- },
-
- color: {
- type: String,
- default: defprops.countTo.color
- },
-
- fontSize: {
- type: [String, Number],
- default: defprops.countTo.fontSize
- },
-
- bold: {
- type: Boolean,
- default: defprops.countTo.bold
- },
-
- separator: {
- type: String,
- default: defprops.countTo.separator
- }
- }
- }
|