mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
15 lines
281 B
Vue
15 lines
281 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'SetupWizard',
|
|
mounted() {
|
|
let status = this.$root.$data.config.installation
|
|
|
|
if (status && status === 'installation-done') this.$router.push({ name: 'SignIn' })
|
|
},
|
|
}
|
|
</script>
|