traefik/webui/src/App.vue

36 lines
619 B
Vue
Raw Normal View History

<template>
2019-08-26 16:15:41 +00:00
<div id="q-app">
<router-view />
2020-05-19 07:12:53 +00:00
<platform-panel />
</div>
</template>
<script>
2019-08-26 16:15:41 +00:00
import { APP } from './_helpers/APP'
2020-05-19 07:12:53 +00:00
import PlatformPanel from './components/platform/PlatformPanel'
2019-08-26 16:15:41 +00:00
export default {
2019-08-26 16:15:41 +00:00
name: 'App',
2020-05-19 07:12:53 +00:00
components: {
PlatformPanel
},
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>