32 lines
369 B
Vue
32 lines
369 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</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'
|
|
|
|
export default {
|
|
name: 'app'
|
|
}
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
|
.row {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
|
|
</style> |