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>
|
<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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user