mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2025-03-22 22:21:47 +00:00
53 lines
992 B
Vue
53 lines
992 B
Vue
<template>
|
|
<div id="modal-root" :style="theme" />
|
|
<div class="app" @mousemove="updateMouse" :style="theme" :class="{ useHeader }">
|
|
<Nav v-if="useHeader" />
|
|
<Tabs />
|
|
<TPS v-if="showTPS" />
|
|
<GameOverScreen />
|
|
<NaNScreen />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import themes from './data/themes';
|
|
import player from './game/player';
|
|
import modInfo from './data/modInfo.json';
|
|
import { mapState } from './util/vue';
|
|
import './main.css';
|
|
|
|
export default {
|
|
name: 'App',
|
|
data() {
|
|
return { useHeader: modInfo.useHeader };
|
|
},
|
|
computed: {
|
|
...mapState([ 'showTPS' ]),
|
|
theme() {
|
|
return themes[player.theme].variables;
|
|
}
|
|
},
|
|
methods: {
|
|
updateMouse(/* event */) {
|
|
// TODO use event to update mouse position for particles
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.app {
|
|
background-color: var(--background);
|
|
color: var(--color);
|
|
display: flex;
|
|
flex-flow: column;
|
|
min-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#modal-root {
|
|
position: absolute;
|
|
min-height: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|