framwork ready, need to test the api access

This commit is contained in:
2021-01-18 16:51:36 +01:00
parent 6636ca21c2
commit 40bf13de53
267 changed files with 46809 additions and 4 deletions
+43
View File
@@ -0,0 +1,43 @@
<template>
<div
id="home"
class="full-width"
>
<header>
<h1>En Français</h1>
</header>
<section>
<h1>404 - Contenu non trouvé</h1>
<code v-if="path">{{ path }}</code>
</section>
</div>
</template>
<script>
export default {
name: 'NotFound',
computed: {
path () {
if (this.$route.query.fullpath) {
return this.$route.query.fullpath
} else if (this.$route.params.pathMatch) {
return this.$route.params.pathMatch
} else {
return null
}
}
},
created () {
console.log('NotFound created', this.$route)
},
metaInfo () {
return {
title: `Not Found`
}
}
}
</script>
<style lang="scss" scoped>
</style>