creacion
This commit is contained in:
+29
@@ -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>
|
||||
Reference in New Issue
Block a user