App.vue 843 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div id="root">
  3. <header role="banner">
  4. <h1
  5. tabindex="0"
  6. >
  7. Les Guides de Paris
  8. </h1>
  9. <HeaderMenu />
  10. </header>
  11. <section class="container center-content">
  12. <RouterView />
  13. </section>
  14. <footer role="search-bar" />
  15. </div>
  16. </template>
  17. <script>
  18. import HeaderMenu from './components/nav/HeaderMenu'
  19. // import { mapState, mapActions } from 'vuex'
  20. export default {
  21. metaInfo: {
  22. // if no subcomponents specify a metaInfo.title, this title will be used
  23. title: 'Home',
  24. // all titles will be injected into this template
  25. titleTemplate: '%s | Guides de Paris'
  26. },
  27. components: {
  28. HeaderMenu
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .container{
  34. font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  35. max-width: 1200px;
  36. }
  37. </style>