diff options
Diffstat (limited to 'src-vue/src/views/PlayView.vue')
-rw-r--r-- | src-vue/src/views/PlayView.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src-vue/src/views/PlayView.vue b/src-vue/src/views/PlayView.vue index d6633f53..af891b5c 100644 --- a/src-vue/src/views/PlayView.vue +++ b/src-vue/src/views/PlayView.vue @@ -30,6 +30,10 @@ export default { showChangelogPage() { this.$store.commit('updateCurrentTab', Tabs.CHANGELOG); + }, + + launchGame() { + this.$store.commit('launchGame'); } } }; @@ -47,7 +51,7 @@ export default { </div> </div> <div> - <el-button :disabled="northstarIsRunning" type="primary" size="large" class="fc_launch__button"> + <el-button :disabled="northstarIsRunning" type="primary" size="large" @click="launchGame" class="fc_launch__button"> {{ northstarIsRunning ? "Game is running" : "Launch game" }} </el-button> <div v-if="$store.state.developer_mode" id="fc_services__status"> |