42 lines
748 B
Vue
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>
|