4
2
mirror of https://github.com/getbible/app.git synced 2024-06-10 06:12:22 +00:00

registered NavBar & Options components

This commit is contained in:
Erastus Amunwe 2020-10-24 02:34:41 +02:00
parent d94620e595
commit 79e27f0edb

View File

@ -1,17 +1,29 @@
<template> <template>
<h1>GetBible</h1> <div>
<navbar/>
<div class="uk-container">
<options/>
</div>
</div>
</template> </template>
<script> <script>
// import _ from 'lodash';
import UIkit from 'uikit'; import UIkit from 'uikit';
import Icons from 'uikit/dist/js/uikit-icons'; import Icons from 'uikit/dist/js/uikit-icons';
import navbar from './components/NavBar.vue';
import options from './components/Options.vue';
UIkit.use(Icons); UIkit.use(Icons);
export default { export default {
name: 'App', name: 'App',
components: { components: {
} navbar,
options
},
} }
</script> </script>
@ -21,7 +33,7 @@ export default {
font-family: Avenir, Helvetica, Arial, sans-serif; font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
text-align: center; // text-align: center;
color: #2c3e50; color: #2c3e50;
margin-top: 60px; margin-top: 60px;
} }