|
@@ -14,19 +14,23 @@
|
|
<section role="main-content">
|
|
<section role="main-content">
|
|
<RouterView />
|
|
<RouterView />
|
|
</section>
|
|
</section>
|
|
- <footer role="search-bar">
|
|
|
|
|
|
+ <footer role="tools">
|
|
<History />
|
|
<History />
|
|
<Results />
|
|
<Results />
|
|
- <Search />
|
|
|
|
|
|
+ <div id="footer-bottom" class="row">
|
|
|
|
+ <FooterTabs />
|
|
|
|
+ <Search />
|
|
|
|
+ </div>
|
|
</footer>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import HeaderMenu from './components/nav/HeaderMenu'
|
|
import HeaderMenu from './components/nav/HeaderMenu'
|
|
-import Search from './components/nav/Search'
|
|
|
|
-import Results from './components/nav/Results'
|
|
|
|
import History from './components/nav/History'
|
|
import History from './components/nav/History'
|
|
|
|
+import Results from './components/nav/Results'
|
|
|
|
+import Search from './components/nav/Search'
|
|
|
|
+import FooterTabs from './components/nav/FooterTabs'
|
|
// import { mapState, mapActions } from 'vuex'
|
|
// import { mapState, mapActions } from 'vuex'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -38,9 +42,10 @@ export default {
|
|
},
|
|
},
|
|
components: {
|
|
components: {
|
|
HeaderMenu,
|
|
HeaderMenu,
|
|
- Search,
|
|
|
|
|
|
+ History,
|
|
Results,
|
|
Results,
|
|
- History
|
|
|
|
|
|
+ Search,
|
|
|
|
+ FooterTabs
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|