30 lines
554 B
Vue
30 lines
554 B
Vue
|
|
<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>
|