diff --git a/src/demo/Animations/CountUpDemo.vue b/src/demo/Animations/CountUpDemo.vue
index bbd1e3a..f5b5ef2 100644
--- a/src/demo/Animations/CountUpDemo.vue
+++ b/src/demo/Animations/CountUpDemo.vue
@@ -11,7 +11,6 @@
:direction="direction"
:delay="delay"
:duration="duration"
- :separator="separator"
class-name="count-up-text"
/>
@@ -41,17 +40,15 @@
-
+
-
+
-
-
@@ -94,25 +91,16 @@ const setStartCounting = (value: boolean) => {
};
const from = ref(50);
-const to = ref(1000);
+const to = ref(100);
const direction = ref<'up' | 'down'>('up');
const duration = ref(2);
const delay = ref(0);
-const separator = ref(',');
const directionOptions = [
{ label: 'Up', value: 'up' },
{ label: 'Down', value: 'down' }
];
-const separatorOptions = [
- { label: 'None', value: '' },
- { label: 'Comma (,)', value: ',' },
- { label: 'Period (.)', value: '.' },
- { label: 'Space ( )', value: ' ' },
- { label: 'Underscore (_)', value: '_' }
-];
-
const propData = [
{
name: 'to',