Skip to content
Snippets Groups Projects

Merge tim into master

Merged Tim Friedrich Brüggemann requested to merge tim into master
Files
4
+ 27
0
<template>
<v-container align-content-end align-end d-flex grid justify-end>
<v-btn x-large icon @click="changeRoute()">
<v-icon x-large>{{
showInfo ? "mdi-information-outline" : "mdi-gamepad-variant-outline"
}}</v-icon>
</v-btn>
</v-container>
</template>
<script>
export default {
data() {
return {
showInfo: true,
};
},
methods: {
changeRoute() {
this.showInfo = !this.showInfo;
this.showInfo ? this.$router.push("/info") : this.$router.push("/games");
},
},
};
</script>
<style></style>
Loading