App.vue 387 B

12345678910111213141516171819
  1. <template>
  2. <div id="root">
  3. <header role="banner">
  4. <h1>Les Guides de Paris</h1>
  5. </header>
  6. <section class="container center-content">
  7. <RouterView />
  8. </section>
  9. <footer role="search-bar" />
  10. </div>
  11. </template>
  12. <style lang="stylus" scoped>
  13. .container
  14. font-family 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
  15. max-width 1200px
  16. </style>