mirror of
https://github.com/anatolykopyl/movieroom-front.git
synced 2026-03-26 04:45:19 +00:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
import api from '@/api/index';
|
|
|
|
export default (id:String) => api.get('/room', {
|
|
params: {
|
|
id,
|
|
},
|
|
}).then((response) => response.data);
|