Skip to content

Commit

Permalink
修复部署问题-1
Browse files Browse the repository at this point in the history
  • Loading branch information
yckj3529 committed May 6, 2024
1 parent d4fc864 commit 3e02c0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/TeamPreview.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<v-container>
<v-row justify="center">
<v-hover v-for="(v, i) in this.team" :key="i">
<v-hover v-for="(v, i) in this.team as Array<any>" :key="i">
<template v-slot:default="{ isHovering, props }">
<v-card
v-bind="props"
Expand Down Expand Up @@ -101,7 +101,7 @@ const heroAvatarSize = computed(() => {
const index = null;
console.log(index);
const getHeroImg = (ename) => {
const getHeroImg = (ename: string) => {
return (
"https://game.gtimg.cn/images/yxzj/img201606/heroimg/" +
String(ename) +
Expand Down

0 comments on commit 3e02c0d

Please sign in to comment.