Initial commit
This commit is contained in:
26
web/frontend/src/components/Stats.vue
Normal file
26
web/frontend/src/components/Stats.vue
Normal 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>
|
Reference in New Issue
Block a user