App.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <div id="root">
  3. <header role="banner">
  4. <div class="wrapper">
  5. <h1
  6. class="site-title"
  7. tabindex="0"
  8. >
  9. Vuejs Webpack
  10. </h1>
  11. </div>
  12. </header>
  13. <section role="main-content">
  14. <div class="wrapper">
  15. <!-- <RouterView /> -->
  16. Hello
  17. </div>
  18. </section>
  19. </div>
  20. </template>
  21. <script>
  22. // import HeaderMenu from './components/nav/HeaderMenu'
  23. // import History from './components/nav/History'
  24. // import Results from './components/nav/Results'
  25. // import Search from './components/nav/Search'
  26. // import FooterTabs from './components/nav/FooterTabs'
  27. // import { mapState } from 'vuex'
  28. export default {
  29. metaInfo: {
  30. // if no subcomponents specify a metaInfo.title, this title will be used
  31. title: 'Home',
  32. // all titles will be injected into this template
  33. titleTemplate: '%s | Vuejs Webpack'
  34. }
  35. // components: {
  36. // HeaderMenu,
  37. // History,
  38. // Results,
  39. // Search,
  40. // FooterTabs
  41. // },
  42. // computed: {
  43. // ...mapState({
  44. // resultsOpened: state => state.Search.opened
  45. // })
  46. // }
  47. }
  48. </script>
  49. <style lang="scss" scoped>
  50. .container{
  51. // font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  52. max-width: 1200px;
  53. }
  54. </style>