We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CountTo
separator
1 parent 1a12687 commit 5aff8baCopy full SHA for 5aff8ba
packages/effects/common-ui/src/components/count-to/count-to.vue
@@ -53,7 +53,7 @@ const numMain = computed(() => {
53
const result = currentValue.value
54
.toFixed(props.decimals)
55
.split('.')[0]
56
- ?.replaceAll(/\B(?=(\d{3})+(?!\d))/g, ',');
+ ?.replaceAll(/\B(?=(\d{3})+(?!\d))/g, props.separator);
57
return result;
58
});
59
0 commit comments