8805f81b96
* some stable work and faster less recompilation * user with zero tasks can use the app * wip work to show loading status of resources * revert changes to sync
6 lines
191 B
JavaScript
6 lines
191 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;
|
|
} |