Skip to content

Commit d1c643a

Browse files
Update playground
1 parent c029ff1 commit d1c643a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/playground/configs/templates/PlaygroundPage.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
>
1010
<v-btn
1111
v-for="color in colors"
12-
:key="color"
12+
:key="(color as string)"
1313
:active="headerBackgroundColor === color"
1414
:color="headerBackgroundColor === color ? color : 'accent'"
1515
size="small"
@@ -46,8 +46,8 @@
4646
</template>
4747

4848

49-
<script setup>
50-
import { ref } from 'vue';
49+
<script setup lang="ts">
50+
import { provide, ref } from 'vue';
5151
// import GroupByClientTable from './GroupByClientTable.vue';
5252
import ClientTable from './ClientTable.vue';
5353
import ServerTable from './ServerTable.vue';

0 commit comments

Comments
 (0)