Files
hackFront/src/App.vue
T

35 lines
609 B
Vue
Raw Normal View History

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