proof of work of player filtering and listing

This commit is contained in:
2023-03-15 20:00:37 +01:00
parent da5be8aaa1
commit aa42772a52
5 changed files with 148 additions and 8 deletions
+23
View File
@@ -0,0 +1,23 @@
<template>
<PlayerList></PlayerList>
</template>
<script lang="ts">
import { Options, Vue } from 'vue-class-component'
import PlayerList from '@/components/PlayerList.vue'
@Options({
components: {
PlayerList
}
})
export default class PlayerView extends Vue {
mounted = function () {
console.log('q')
};
data () {
return { a: 1 }
}
}
</script>