38 lines
520 B
Vue
38 lines
520 B
Vue
<template>
|
|
<div id="app">
|
|
<Header />
|
|
<router-view></router-view>
|
|
<Footer />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from './components/Header'
|
|
import Footer from './components/Footer'
|
|
|
|
import Vue from 'vue'
|
|
import BootstrapVue from 'bootstrap-vue'
|
|
|
|
|
|
Vue.use(BootstrapVue)
|
|
|
|
import 'bootstrap/dist/css/bootstrap.css'
|
|
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
|
|
|
export default {
|
|
name: 'app',
|
|
components: {
|
|
Header,
|
|
Footer
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
#app {
|
|
|
|
}
|
|
|
|
</style>
|