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 c029ff1 commit d1c643aCopy full SHA for d1c643a
src/playground/configs/templates/PlaygroundPage.vue
@@ -9,7 +9,7 @@
9
>
10
<v-btn
11
v-for="color in colors"
12
- :key="color"
+ :key="(color as string)"
13
:active="headerBackgroundColor === color"
14
:color="headerBackgroundColor === color ? color : 'accent'"
15
size="small"
@@ -46,8 +46,8 @@
46
</template>
47
48
49
-<script setup>
50
-import { ref } from 'vue';
+<script setup lang="ts">
+import { provide, ref } from 'vue';
51
// import GroupByClientTable from './GroupByClientTable.vue';
52
import ClientTable from './ClientTable.vue';
53
import ServerTable from './ServerTable.vue';
0 commit comments