|
|
@ -13,7 +13,7 @@ function loadClub(){ |
|
|
|
ClubApi.getClub(1).then((result) =>{ |
|
|
|
console.log(result) |
|
|
|
console.log("++++++++",result.data); |
|
|
|
club.value = result; |
|
|
|
club.value = result.data; |
|
|
|
console.log(club.value); |
|
|
|
}) |
|
|
|
} |
|
|
@ -24,7 +24,7 @@ const shows = ref([]) |
|
|
|
function loadShows(){ |
|
|
|
ClubApi.getShows(1).then((result) =>{ |
|
|
|
console.log(result); |
|
|
|
shows.value = result; |
|
|
|
shows.value = result.data; |
|
|
|
}) |
|
|
|
} |
|
|
|
// |
|
|
|