File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff 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 }) => {
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ import ArenaVueUiGizmo from "../TestingArena/ArenaVueUiGizmo.vue";
4848import ArenaVueUiKpi from " ../TestingArena/ArenaVueUiKpi.vue" ;
4949import ArenaVueUiStackbar from " ../TestingArena/ArenaVueUiStackbar.vue" ;
5050import ArenaVueUiRating from " ../TestingArena/ArenaVueUiRating.vue" ;
51+ import ArenaVueUiSmiley from " ../TestingArena/ArenaVueUiSmiley.vue" ;
5152
5253const 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 >
You can’t perform that action at this time.
0 commit comments