Update get all users route

This commit is contained in:
advplyr 2022-12-12 17:48:57 -06:00
parent 2d9035d90b
commit ea42ab7624
2 changed files with 5 additions and 5 deletions

View File

@ -109,8 +109,8 @@ export default {
loadUsers() { loadUsers() {
this.$axios this.$axios
.$get('/api/users') .$get('/api/users')
.then((users) => { .then((res) => {
this.users = users.sort((a, b) => { this.users = res.users.sort((a, b) => {
return a.createdAt - b.createdAt return a.createdAt - b.createdAt
}) })
}) })

View File

@ -61,10 +61,10 @@
<script> <script>
export default { export default {
async asyncData({ params, redirect, app }) { async asyncData({ params, redirect, app }) {
var users = await app.$axios const users = await app.$axios
.$get('/api/users') .$get('/api/users')
.then((users) => { .then((res) => {
return users.sort((a, b) => { return res.users.sort((a, b) => {
return a.createdAt - b.createdAt return a.createdAt - b.createdAt
}) })
}) })