Showing
1 changed file
with
2 additions
and
1 deletions
@@ -92,7 +92,8 @@ | @@ -92,7 +92,8 @@ | ||
92 | 92 | ||
93 | <tr v-for="size in intro.sizeInfoBo.sizeBoList" :key="size.sizeName"> | 93 | <tr v-for="size in intro.sizeInfoBo.sizeBoList" :key="size.sizeName"> |
94 | <td>{{size.sizeName}}</td> | 94 | <td>{{size.sizeName}}</td> |
95 | - <td v-for="item in size.sortAttributes" :key="item.sizeValue">{{item.sizeValue}}</td> | 95 | + <td v-for="(item, index) in size.sortAttributes" :key="index">{{item.sizeValue |
96 | + }}</td> | ||
96 | </tr> | 97 | </tr> |
97 | </tbody> | 98 | </tbody> |
98 | </table> | 99 | </table> |
-
Please register or login to post a comment