Files
vinlottis/src/Vinlottis.vue
Kasper Rynning-Tønnesen 86baef131f countdown more places
2020-01-24 11:08:34 +01:00

42 lines
748 B
Vue

<template>
<div class="container">
<banner />
<router-view />
</div>
</template>
<script>
import banner from "@/ui/Banner";
export default {
name: "vinlottis",
components: { banner },
props: {},
data() {
return {};
},
mounted() {
console.log("SNEAKY PETE!");
},
computed: {},
methods: {}
};
</script>
<style lang="scss">
@import "./styles/global.scss";
@font-face {
font-family: "knowit";
font-weight: 600;
src: url("/../public/assets/fonts/bold.eot"),
url("/../public/assets/fonts/bold.woff") format("woff");
}
@font-face {
font-family: "knowit";
font-weight: 300;
src: url("/../public/assets/fonts/regular.eot"),
url("/../public/assets/fonts/regular.woff") format("woff");
}
</style>