ваше сообщение коммита

This commit is contained in:
2025-05-28 11:15:38 +03:00
parent 91a85403ae
commit 1d6797fe1b
15 changed files with 8150 additions and 1298 deletions

View File

@@ -0,0 +1,11 @@
import api from '../api/axios';
export default {
async getContacts() {
const res = await api.get('/api/users');
if (res.data && res.data.success) {
return res.data.contacts;
}
return [];
}
};