mirror of
https://github.com/rustfs/console.git
synced 2026-09-19 01:47:44 +08:00
8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
const { $api } = useNuxtApp();
|
|
export const useUsers = () => {
|
|
const ListUsers = async () => {
|
|
return await $api.get('/users');
|
|
};
|
|
return { ListUsers };
|
|
};
|