mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
21 lines
421 B
Vue
21 lines
421 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'SetupWizard',
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
},
|
|
mounted() {
|
|
let status = this.$root.$data.config.installation
|
|
|
|
if (status && status === 'setup-done')
|
|
this.$router.push({name: 'SignIn'})
|
|
}
|
|
}
|
|
</script>
|