mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
6 lines
No EOL
192 B
JavaScript
6 lines
No EOL
192 B
JavaScript
import axios from 'axios';
|
|
|
|
export async function fetch (store) { // eslint-disable-line no-shadow
|
|
let response = await axios.get('/api/v3/user');
|
|
store.state.user = response.data.data;
|
|
} |