35 lines
828 B
JavaScript
35 lines
828 B
JavaScript
|
// import the styles
|
||
|
import { ipcRenderer } from 'electron'
|
||
|
import Vue from 'vue'
|
||
|
import App from './App.vue'
|
||
|
import router from './router/index'
|
||
|
import store from './store/index'
|
||
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||
|
import { fas } from '@fortawesome/free-solid-svg-icons'
|
||
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
||
|
|
||
|
const isDev = process.env.NODE_ENV === 'development'
|
||
|
|
||
|
Vue.config.devtools = isDev
|
||
|
Vue.config.performance = isDev
|
||
|
Vue.config.productionTip = isDev
|
||
|
|
||
|
library.add(fas)
|
||
|
|
||
|
Vue.component('font-awesome-icon', FontAwesomeIcon)
|
||
|
|
||
|
/* eslint-disable-next-line */
|
||
|
new Vue({
|
||
|
el: '#app',
|
||
|
router,
|
||
|
store,
|
||
|
render: h => h(App)
|
||
|
})
|
||
|
|
||
|
// handle menu event updates from main script
|
||
|
ipcRenderer.on('change-view', (event, data) => {
|
||
|
if (data.route) {
|
||
|
router.push(data.route)
|
||
|
}
|
||
|
})
|