reset base config

This commit is contained in:
axolotle
2021-02-23 12:45:57 +01:00
parent 0da09e13d8
commit c0fd76d93a
12 changed files with 123 additions and 148 deletions
+13 -22
View File
@@ -1,31 +1,25 @@
<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>
<div id="app">
<header>
<h1>
<router-link :to="{ name: 'home' }">En Français</router-link>
</h1>
</header>
<section role="main-content">
<div class="wrapper">
<RouterView />
</div>
</section>
<footer role="tools">
<main id="main">
<router-view />
</main>
<footer>
<p>footer</p>
</footer>
</div>
</template>
<script>
// import { mapActions, mapState } from 'vuex'
export default {
name: 'App',
metaInfo: {
// if no subcomponents specify a metaInfo.title, this title will be used
title: 'Home',
@@ -40,7 +34,4 @@ export default {
</script>
<style lang="scss" scoped>
.container{
max-width: 1200px;
}
</style>