Files
hackFront/src/App.vue
T

38 lines
623 B
Vue
Raw Normal View History

2020-07-05 23:02:00 -05:00
<template>
2020-08-02 21:57:53 -05:00
2020-07-05 23:02:00 -05:00
<div id="app">
<router-view></router-view>
</div>
2020-08-02 21:57:53 -05:00
2020-07-05 23:02:00 -05:00
</template>
<script>
//import HelloWorld from "./components/HelloWorld.vue";
import Vue from "vue";
import { BootstrapVue, IconsPlugin } from "bootstrap-vue";
Vue.use(BootstrapVue);
Vue.use(IconsPlugin);
export default {
name: "App",
2020-08-02 21:57:53 -05:00
2020-07-05 23:02:00 -05:00
};
</script>
2020-08-02 21:57:53 -05:00
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
</style>