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
+45
View File
@@ -0,0 +1,45 @@
<template>
<div id="root">
<header role="banner">
<div class="wrapper">
<h1
class="site-title"
tabindex="0"
>
<router-link :to="{ name:'home' }">En Français</router-link>
</h1>
</div>
</header>
<section role="main-content">
<div class="wrapper">
<RouterView />
</div>
</section>
<footer role="tools">
</footer>
</div>
</template>
<script>
// import { mapActions, mapState } from 'vuex'
export default {
metaInfo: {
// if no subcomponents specify a metaInfo.title, this title will be used
title: 'Home',
// all titles will be injected into this template
titleTemplate: '%s | En Français',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
]
}
}
</script>
<style lang="scss" scoped>
.container{
max-width: 1200px;
}
</style>