2019-10-30 15:31:07 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import router from './router'
|
|
|
|
import store from './store'
|
|
|
|
|
2019-11-01 17:09:17 +00:00
|
|
|
import BootstrapVue from 'bootstrap-vue'
|
2020-03-16 20:28:23 +00:00
|
|
|
import VueCookies from 'vue-cookies'
|
2019-11-01 17:09:17 +00:00
|
|
|
|
2019-11-16 13:49:07 +00:00
|
|
|
// import "bootswatch/dist/darkly/variables";
|
|
|
|
// import "bootstrap/scss/bootstrap";
|
|
|
|
import "bootswatch/dist/darkly/bootstrap.css";
|
|
|
|
|
|
|
|
// import 'bootstrap/dist/css/bootstrap.css'
|
2019-11-01 17:09:17 +00:00
|
|
|
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
|
|
|
|
2019-10-30 15:31:07 +00:00
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
2019-11-01 17:09:17 +00:00
|
|
|
Vue.use(BootstrapVue)
|
2020-03-16 20:28:23 +00:00
|
|
|
Vue.use(VueCookies)
|
2019-11-01 17:09:17 +00:00
|
|
|
|
2019-10-30 15:31:07 +00:00
|
|
|
new Vue({
|
|
|
|
router,
|
|
|
|
store,
|
|
|
|
render: h => h(App)
|
|
|
|
}).$mount('#app')
|