Files
TiendaFront/src/App.vue
T

32 lines
369 B
Vue
Raw Normal View History

2020-09-08 11:58:27 -05:00
<template>
<div id="app">
<router-view></router-view>
2020-09-08 11:58:27 -05:00
</div>
</template>
<script>
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
}
</script>
<style>
.row {
margin: 0 !important;
2020-09-08 11:58:27 -05:00
}
</style>