Initial commit

This commit is contained in:
2021-04-10 07:58:01 +02:00
commit 4bb38a797c
49 changed files with 12483 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<template>
<div class="stats">
<h1>Stats!</h1>
<stats-username />
</div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import StatsUsername from '@/components/StatsUsername.vue';
@Component({
components: {
StatsUsername,
},
})
export default class Stats extends Vue {
@Prop() private msg!: string;
}
</script>
<style lang="scss" scoped>
.stats {
align-content: center;
width: 70%;
}
</style>