8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
export default async function() {
|
|
const { store } = this.context
|
|
|
|
await this.callApi('/api/startGame', {
|
|
g: store.state.engine.user?.game,
|
|
})
|
|
}
|