Redirect to the tree list from index

This commit is contained in:
Pavle Portic 2019-03-29 01:17:14 +01:00
parent 06a8f86488
commit 41ecffcc11
Signed by: TheEdgeOfRage
GPG Key ID: 6758ACE46AA2A849
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,5 @@
<template> <template>
<v-container> <v-container>
<h1>Welcome to Perktree</h1>
</v-container> </v-container>
</template> </template>
@ -16,6 +15,9 @@ export default {
}, },
methods: { methods: {
}, },
mounted() {
this.$router.push({ name: 'trees' });
},
}; };
</script> </script>