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.
1 parent dc352bc commit 6c261b5Copy full SHA for 6c261b5
TestingArena/ArenaVueUiKpi.vue
@@ -6,15 +6,19 @@ import Box from "./Box.vue";
6
import convertArrayToObject from "./convertModel";
7
import { useArena } from "../src/useArena";
8
9
-const dataset = ref(12012012);
+const dataset = ref(1201);
10
11
function updateVal() {
12
- dataset.value = Math.random() * 10000
+ dataset.value = Math.round(Math.random() * 10000)
13
}
14
15
const config = ref({
16
formatter: ({ value }) => {
17
return `f | ${value}`
18
+ },
19
+ title: 'Lorem ipsum dolor sit amet',
20
+ analogDigits: {
21
+ show: true
22
23
})
24
0 commit comments