mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
19 lines
416 B
Vue
19 lines
416 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'SetupWizard',
|
|
computed: {
|
|
...mapGetters(['config']),
|
|
},
|
|
mounted() {
|
|
if (this.config.installation === 'setup-done' || this.config.installation === 'quiet-update')
|
|
this.$router.push({name: 'SignIn'})
|
|
}
|
|
}
|
|
</script>
|