라이브 리스트 - 현재참여인원 추가

This commit is contained in:
Yu Sung
2024-05-29 03:08:44 +09:00
parent 512ae21a48
commit e2efeab20d
2 changed files with 39 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import Vue from 'vue';
async function getLive() {
return Vue.axios.get('/admin/live')
async function getLive(page, size) {
return Vue.axios.get('/admin/live?page=' + (page - 1) + '&size=' + size)
}
export { getLive }