Oasis landingpage scaffolding

This commit is contained in:
Peter Papp
2021-04-03 07:50:57 +02:00
parent 7cf09494e5
commit 377c471a6c
3 changed files with 85 additions and 172 deletions
+36
View File
@@ -0,0 +1,36 @@
<template>
<h1>hello oasis</h1>
</template>
<script>
//import HeroScreenshot from '@/components/Index/IndexHeroScreenshot'
import { mapGetters } from 'vuex'
import axios from 'axios'
export default {
name: 'Homepage',
components: {
},
computed: {
...mapGetters([
'config'
]),
},
data() {
return {
isLoading: false,
}
},
mounted() {
},
created() {
this.$scrollTop()
}
}
</script>
<style lang="scss" scoped>
</style>