Files
TiendaFront/src/App.vue
T

38 lines
520 B
Vue
Raw Normal View History

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