mirror of
https://github.com/KevinMidboe/leifsopplevelser.git
synced 2025-10-29 17:50:21 +00:00
Source and server for serving built files.
This commit is contained in:
39
src/components/Home.vue
Normal file
39
src/components/Home.vue
Normal 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>
|
||||
Reference in New Issue
Block a user