Skip to content

Commit babeb74

Browse files
committed
Dev environement - Update testing arena
1 parent a6ea7fd commit babeb74

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

TestingArena/ArenaVueUiRating.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ const config = computed(() => {
7373
...c,
7474
style: {
7575
...c.style,
76+
rating: {
77+
...c.style.rating,
78+
// formatter: ({ value }) => {
79+
// return `${value}!`
80+
// }
81+
},
7682
tooltip: {
7783
...c.style.tooltip,
7884
// formatter: ({ value }) => {

src/App.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ import ArenaVueUiGizmo from "../TestingArena/ArenaVueUiGizmo.vue";
4848
import ArenaVueUiKpi from "../TestingArena/ArenaVueUiKpi.vue";
4949
import ArenaVueUiStackbar from "../TestingArena/ArenaVueUiStackbar.vue";
5050
import ArenaVueUiRating from "../TestingArena/ArenaVueUiRating.vue";
51+
import ArenaVueUiSmiley from "../TestingArena/ArenaVueUiSmiley.vue";
5152
5253
const showOldArena = ref(false);
5354
@@ -99,13 +100,14 @@ const components = ref([
99100
/*___________________*/"VueUiKpi", // 44
100101
/*______________*/"VueUiStackbar", // 45
101102
/*________________*/"VueUiRating", // 46
103+
/*________________*/"VueUiSmiley", // 47
102104
103105
// screenshot
104106
// dashboard
105107
// cursor
106108
]);
107109
108-
const selectedComponent = ref(components.value[46]);
110+
const selectedComponent = ref(components.value[47]);
109111
110112
</script>
111113

@@ -260,4 +262,7 @@ const selectedComponent = ref(components.value[46]);
260262

261263
<!-- 46 -->
262264
<ArenaVueUiRating v-if="selectedComponent === 'VueUiRating'" />
265+
266+
<!-- 47 -->
267+
<ArenaVueUiSmiley v-if="selectedComponent === 'VueUiSmiley'" />
263268
</template>

0 commit comments

Comments
 (0)