traefik/webui/src/App.vue

44 lines
824 B
Vue
Raw Normal View History

<template>
2019-08-26 16:15:41 +00:00
<div id="q-app">
<router-view />
<platform-panel
v-if="pilotEnabled" />
</div>
</template>
<script>
2019-08-26 16:15:41 +00:00
import { APP } from './_helpers/APP'
import PlatformPanel from './components/platform/PlatformPanel'
import { mapGetters } from 'vuex'
2019-08-26 16:15:41 +00:00
export default {
2019-08-26 16:15:41 +00:00
name: 'App',
components: {
PlatformPanel
},
computed: {
...mapGetters('core', { coreVersion: 'version' }),
pilotEnabled () {
return this.coreVersion.pilotEnabled
}
},
2019-08-26 16:15:41 +00:00
beforeCreate () {
// Set vue instance
APP.vue = () => this.$root
// debug
console.log('Quasar -> ', this.$q.version)
2020-02-27 20:30:04 +00:00
this.$q.dark.set(localStorage.getItem('traefik-dark') === 'true')
},
watch: {
'$q.dark.isActive' (val) {
localStorage.setItem('traefik-dark', val)
}
}
2019-08-26 16:15:41 +00:00
}
</script>
2019-08-26 16:15:41 +00:00
<style>
</style>