2019-03-30 22:55:48 +00:00
|
|
|
<template>
|
2019-04-08 20:06:22 +00:00
|
|
|
<div class="h-screen flex flex-col items-center justify-center">
|
2019-03-30 22:55:48 +00:00
|
|
|
<h1>Home page test</h1>
|
|
|
|
|
|
2019-04-08 20:06:22 +00:00
|
|
|
<SearchForm @formSubmit="redirect"/>
|
|
|
|
|
|
2019-03-30 22:55:48 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2019-04-08 20:06:22 +00:00
|
|
|
import SearchForm from '@/components/SearchForm.vue';
|
|
|
|
|
|
2019-03-30 22:55:48 +00:00
|
|
|
export default {
|
2019-04-08 20:06:22 +00:00
|
|
|
components: {
|
|
|
|
|
SearchForm
|
2019-03-30 22:55:48 +00:00
|
|
|
},
|
|
|
|
|
methods: {
|
2019-04-08 20:06:22 +00:00
|
|
|
redirect(summoner, region) {
|
|
|
|
|
this.$router.push(`/summoner/${region}/${summoner}`)
|
|
|
|
|
},
|
2019-03-30 22:55:48 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|