App.vue 695 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div id="app">
  3. <header>
  4. <h1>
  5. <router-link :to="{ name: 'home' }">En Français</router-link>
  6. </h1>
  7. </header>
  8. <main id="main">
  9. <router-view />
  10. </main>
  11. <footer>
  12. <p>footer</p>
  13. </footer>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'App',
  19. metaInfo: {
  20. // if no subcomponents specify a metaInfo.title, this title will be used
  21. title: 'Home',
  22. // all titles will be injected into this template
  23. titleTemplate: '%s | En Français',
  24. meta: [
  25. { charset: 'utf-8' },
  26. { name: 'viewport', content: 'width=device-width, initial-scale=1' }
  27. ]
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. </style>