2020-09-08 11:58:27 -05:00
|
|
|
<template>
|
|
|
|
|
<div id="app">
|
2020-09-17 18:55:11 -05:00
|
|
|
<Header />
|
|
|
|
|
<router-view></router-view>
|
|
|
|
|
<Footer />
|
2020-09-08 11:58:27 -05:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-09-17 18:55:11 -05:00
|
|
|
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'
|
2020-09-08 11:58:27 -05:00
|
|
|
|
|
|
|
|
export default {
|
2020-09-17 18:55:11 -05:00
|
|
|
name: 'app',
|
2020-09-08 11:58:27 -05:00
|
|
|
components: {
|
2020-09-17 18:55:11 -05:00
|
|
|
Header,
|
|
|
|
|
Footer
|
|
|
|
|
},
|
2020-09-08 11:58:27 -05:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2020-09-17 18:55:11 -05:00
|
|
|
<style scoped>
|
|
|
|
|
|
2020-09-08 11:58:27 -05:00
|
|
|
#app {
|
2020-09-17 18:55:11 -05:00
|
|
|
|
2020-09-08 11:58:27 -05:00
|
|
|
}
|
2020-09-17 18:55:11 -05:00
|
|
|
|
2020-09-08 11:58:27 -05:00
|
|
|
</style>
|