4
2
Fork 0
app/src/App.vue

29 lines
492 B
Vue
Raw Normal View History

2020-10-23 21:50:02 +00:00
<template>
2020-10-23 22:21:35 +00:00
<h1>GetBible</h1>
2020-10-23 21:50:02 +00:00
</template>
<script>
2020-10-23 22:21:35 +00:00
import UIkit from 'uikit';
import Icons from 'uikit/dist/js/uikit-icons';
2020-10-23 21:50:02 +00:00
2020-10-23 22:21:35 +00:00
UIkit.use(Icons);
2020-10-23 21:50:02 +00:00
export default {
name: 'App',
components: {
}
}
</script>
2020-10-23 22:21:35 +00:00
<style lang="less">
@import "../node_modules/uikit/src/less/uikit.less";
2020-10-23 21:50:02 +00:00
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>