This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/main.js

36 lines
892 B
JavaScript
Raw Normal View History

2018-08-28 20:50:22 +00:00
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import auth from './auth'
2018-08-28 20:50:22 +00:00
import './vikunja.scss'
2018-09-06 17:56:44 +00:00
2018-08-28 20:50:22 +00:00
Vue.config.productionTip = false
2018-09-08 19:43:16 +00:00
// Notifications
import Notifications from 'vue-notification'
Vue.use(Notifications)
2018-09-09 15:23:06 +00:00
// Icons
import { library } from '@fortawesome/fontawesome-svg-core'
import { faSignOutAlt } from '@fortawesome/free-solid-svg-icons'
2018-09-09 17:09:46 +00:00
import { faPlus } from '@fortawesome/free-solid-svg-icons'
import { faListOl } from '@fortawesome/free-solid-svg-icons'
import { faTasks } from '@fortawesome/free-solid-svg-icons'
2018-09-09 15:23:06 +00:00
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
library.add(faSignOutAlt)
2018-09-09 17:09:46 +00:00
library.add(faPlus)
library.add(faListOl)
library.add(faTasks)
2018-09-09 15:23:06 +00:00
Vue.component('icon', FontAwesomeIcon)
// Check the user's auth status when the app starts
auth.checkAuth()
2018-08-28 20:50:22 +00:00
new Vue({
router,
2018-08-28 20:50:22 +00:00
render: h => h(App)
}).$mount('#app')