2018-08-28 22:50:22 +02:00
|
|
|
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
2018-09-06 19:46:09 +02:00
|
|
|
import router from './router'
|
|
|
|
import auth from './auth'
|
2018-08-28 22:50:22 +02:00
|
|
|
|
2018-09-06 19:56:44 +02:00
|
|
|
import '../node_modules/bulma/bulma.sass'
|
|
|
|
|
2018-08-28 22:50:22 +02:00
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
2018-09-08 21:43:16 +02:00
|
|
|
// Notifications
|
|
|
|
import Notifications from 'vue-notification'
|
|
|
|
Vue.use(Notifications)
|
|
|
|
|
2018-09-06 19:46:09 +02:00
|
|
|
// Check the user's auth status when the app starts
|
|
|
|
auth.checkAuth()
|
|
|
|
|
2018-08-28 22:50:22 +02:00
|
|
|
new Vue({
|
2018-09-06 19:46:09 +02:00
|
|
|
router,
|
2018-08-28 22:50:22 +02:00
|
|
|
render: h => h(App)
|
|
|
|
}).$mount('#app')
|