Skip to content

Commit

Permalink
Merge pull request tvjsx#167 from fuzzthink/master
Browse files Browse the repository at this point in the history
Bug fix: Removed extra ending-div, add v-for key
  • Loading branch information
C451 authored Nov 28, 2020
2 parents 9604172 + e870131 commit 51b4911
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Spinner.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<template>
<div class="tvjs-spinner">
<div v-for="i in 4" :style="{background: colors.text}">
<div v-for="i in 4" :key="i" :style="{background: colors.text}">
</div>
</div>
</div>
</template>
<script>
export default {
Expand Down

0 comments on commit 51b4911

Please sign in to comment.