upload request prototype UI

This commit is contained in:
Čarodej
2022-02-16 16:57:57 +01:00
parent 3fafc811fe
commit 394a7b6baf
197 changed files with 6927 additions and 2738 deletions

View File

@@ -3,13 +3,12 @@
</template>
<script>
export default {
name: 'SetupWizard',
mounted() {
let status = this.$root.$data.config.installation
export default {
name: 'SetupWizard',
mounted() {
let status = this.$root.$data.config.installation
if (status && status === 'installation-done')
this.$router.push({ name: 'SignIn' })
},
}
if (status && status === 'installation-done') this.$router.push({ name: 'SignIn' })
},
}
</script>