Konami everywhere

This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-24 09:59:48 +01:00
parent 82216ac589
commit 783bc641af
2 changed files with 4 additions and 5 deletions

View File

@@ -2,14 +2,16 @@
<div class="container"> <div class="container">
<banner /> <banner />
<router-view /> <router-view />
<Countdown />
</div> </div>
</template> </template>
<script> <script>
import banner from "@/ui/Banner"; import banner from "@/ui/Banner";
import Countdown from "@/ui/Countdown";
export default { export default {
name: "vinlottis", name: "vinlottis",
components: { banner }, components: { banner, Countdown },
props: {}, props: {},
data() { data() {
return {}; return {};

View File

@@ -24,7 +24,6 @@
</div> </div>
</div> </div>
</div> </div>
<Countdown />
</div> </div>
</template> </template>
@@ -37,7 +36,6 @@ import WinGraph from "@/ui/WinGraph";
import Banner from "@/ui/Banner"; import Banner from "@/ui/Banner";
import Wines from "@/ui/Wines"; import Wines from "@/ui/Wines";
import Vipps from "@/ui/Vipps"; import Vipps from "@/ui/Vipps";
import Countdown from "@/ui/Countdown";
export default { export default {
components: { components: {
@@ -47,8 +45,7 @@ export default {
WinGraph, WinGraph,
Banner, Banner,
Wines, Wines,
Vipps, Vipps
Countdown
}, },
mounted() { mounted() {
if (window.location.hostname == "localhost") { if (window.location.hostname == "localhost") {