Source and server for serving built files.

This commit is contained in:
2019-01-07 23:15:36 +01:00
parent 6967541ba1
commit 7d0293a818
7 changed files with 148 additions and 0 deletions

39
src/components/Home.vue Normal file
View File

@@ -0,0 +1,39 @@
<template>
<div class="col-md-10 col-sm-12">
<h1>Leifs opplevelser</h1>
<h2>Han har ikke hatt nok etter 60 år!</h2>
{{ date }}
</div>
</template>
<script>
// import '' from ''
export default {
data() {
return {
title: 'Leifs opplevelser',
date: undefined,
bool: false
}
},
created() {
this.date = new Date();
}
}
</script>
<style language="scss">
h1 {
font-size: 6rem;
font-weight: 400;
font-style: normal;
text-align: center;
text-transform: uppercase;
}
h2 {
text-align: center;
font-weight: normal;
}
</style>