Update:Users table show count next to header

This commit is contained in:
advplyr 2024-12-02 17:35:35 -06:00
parent 84803cef82
commit 615ed26f0f
2 changed files with 8 additions and 2 deletions

View file

@ -120,6 +120,7 @@ export default {
this.users = res.users.sort((a, b) => {
return a.createdAt - b.createdAt
})
this.$emit('numUsers', this.users.length)
})
.catch((error) => {
console.error('Failed', error)