2019-03-30 22:55:48 +00:00
|
|
|
<template>
|
2019-04-10 20:05:52 +00:00
|
|
|
<div class="homepage h-screen flex flex-col items-center justify-center">
|
2019-03-30 22:55:48 +00:00
|
|
|
|
2019-04-10 20:05:52 +00:00
|
|
|
<div class="relative flex flex-col items-center w-full max-w-lg">
|
|
|
|
|
<div class="absolute logo">
|
|
|
|
|
<img src="@/assets/Logo.svg" alt="logo">
|
|
|
|
|
</div>
|
|
|
|
|
<SearchForm @formSubmit="redirect"/>
|
|
|
|
|
</div>
|
2019-04-08 20:06:22 +00:00
|
|
|
|
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>
|
2019-04-10 20:05:52 +00:00
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.homepage {
|
|
|
|
|
background-image: url("../assets/bg-homepage-1.jpg");
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
top: -160px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|