appropriately name game card mixin

This commit is contained in:
Gamebrary 2021-03-23 15:55:31 -07:00
parent 32e3dbf47a
commit 0d50e9b0f1
8 changed files with 14 additions and 14 deletions

View file

@ -80,9 +80,9 @@
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
import GameCardMixin from '@/components/GameCards/GameCardMixin';
export default {
mixins: [GameCardUtils],
mixins: [GameCardMixin],
};
</script>

View file

@ -6,9 +6,9 @@
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
import GameCardMixin from '@/components/GameCards/GameCardMixin';
export default {
mixins: [GameCardUtils],
mixins: [GameCardMixin],
};
</script>

View file

@ -81,9 +81,9 @@
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
import GameCardMixin from '@/components/GameCards/GameCardMixin';
export default {
mixins: [GameCardUtils],
mixins: [GameCardMixin],
};
</script>

View file

@ -65,9 +65,9 @@
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
import GameCardMixin from '@/components/GameCards/GameCardMixin';
export default {
mixins: [GameCardUtils],
mixins: [GameCardMixin],
};
</script>

View file

@ -37,10 +37,10 @@
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
import GameCardMixin from '@/components/GameCards/GameCardMixin';
export default {
mixins: [GameCardUtils],
mixins: [GameCardMixin],
methods: {
async addGame() {

View file

@ -37,10 +37,10 @@
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
import GameCardMixin from '@/components/GameCards/GameCardMixin';
export default {
mixins: [GameCardUtils],
mixins: [GameCardMixin],
methods: {
async addGame() {

View file

@ -65,9 +65,9 @@
</template>
<script>
import GameCardUtils from '@/components/GameCards/GameCard';
import GameCardMixin from '@/components/GameCards/GameCardMixin';
export default {
mixins: [GameCardUtils],
mixins: [GameCardMixin],
};
</script>