mirror of
https://github.com/getbible/app.git
synced 2024-12-22 15:58:55 +00:00
registered NavBar & Options components
This commit is contained in:
parent
d94620e595
commit
79e27f0edb
18
src/App.vue
18
src/App.vue
@ -1,17 +1,29 @@
|
||||
<template>
|
||||
<h1>GetBible</h1>
|
||||
<div>
|
||||
<navbar/>
|
||||
<div class="uk-container">
|
||||
<options/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// import _ from 'lodash';
|
||||
|
||||
import UIkit from 'uikit';
|
||||
import Icons from 'uikit/dist/js/uikit-icons';
|
||||
|
||||
import navbar from './components/NavBar.vue';
|
||||
import options from './components/Options.vue';
|
||||
|
||||
UIkit.use(Icons);
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
}
|
||||
navbar,
|
||||
options
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
@ -21,7 +33,7 @@ export default {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: center;
|
||||
// text-align: center;
|
||||
color: #2c3e50;
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user