diff options
author | Remy Raes <raes.remy@gmail.com> | 2022-09-24 12:13:54 +0200 |
---|---|---|
committer | Remy Raes <raes.remy@gmail.com> | 2022-09-24 12:13:54 +0200 |
commit | e1271d73a67ecc711838e8e8c37bd20d9fe019fc (patch) | |
tree | ec93733417bc292c62da41549731c4a676e4f763 /src-vue/src/views | |
parent | d4b55ae95a83f92581296ce0c54e8be62e33bbcc (diff) | |
download | FlightCore-e1271d73a67ecc711838e8e8c37bd20d9fe019fc.tar.gz FlightCore-e1271d73a67ecc711838e8e8c37bd20d9fe019fc.zip |
feat: use a store for application state
Diffstat (limited to 'src-vue/src/views')
-rw-r--r-- | src-vue/src/views/PlayView.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-vue/src/views/PlayView.vue b/src-vue/src/views/PlayView.vue index 116d3649..4104f0ac 100644 --- a/src-vue/src/views/PlayView.vue +++ b/src-vue/src/views/PlayView.vue @@ -4,7 +4,7 @@ <template> <div class="fc_launch__container"> <div class="fc_title">Northstar</div> - <div class="fc_subtitle">Last updated: 23-09-2022 14:46</div> + <div class="fc_northstar__version">v{{ $store.state.installed_northstar_version }}</div> <el-button type="primary" size="large">Launch game</el-button> </div> </template> @@ -31,7 +31,7 @@ button { font-weight: bold; } -.fc_subtitle { +.fc_northstar__version { color: rgb(168, 168, 168); margin-bottom: 20px; } |