14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
export default async function() {
|
|
const { store } = this.context
|
|
|
|
try {
|
|
const response = await this.callApi('/api/games')
|
|
store.commit('engine/setGames', response.data)
|
|
} catch(e) {
|
|
store.commit('engine/setGames', undefined)
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|