This commit is contained in:
2020-07-05 23:02:00 -05:00
commit cd33bcef99
21 changed files with 13792 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<template>
<div id="app">
<Header />
<router-view></router-view>
<Footer />
</div>
</template>
<script>
//import HelloWorld from "./components/HelloWorld.vue";
import Header from "./view/header.vue";
import Footer from "./view/footer.vue";
import Vue from "vue";
import { BootstrapVue, IconsPlugin } from "bootstrap-vue";
Vue.use(BootstrapVue);
// Optionally install the BootstrapVue icon components plugin
Vue.use(IconsPlugin);
export default {
name: "App",
components: {
//HelloWorld
Header,
Footer
}
};
</script>