add redirect test to root (“/“)

This commit is contained in:
Luke Edwards
2018-08-06 20:29:28 -07:00
parent aad87857ce
commit c6da26e1a0
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<script>
export default {
preload() {
this.redirect(301, '/');
}
};
</script>