2020-09-25 23:36:11 +02:00
|
|
|
import Vue from 'vue'
|
|
|
|
import router from './routes'
|
|
|
|
import api from './api'
|
|
|
|
import i18n from './langs/i18n'
|
|
|
|
import FontAwesome from './packages/fontawesome'
|
|
|
|
import Clipboard from './packages/clipboard'
|
|
|
|
import QrcodeReader from './packages/qrcodeReader'
|
|
|
|
import Notifications from 'vue-notification'
|
|
|
|
import App from './components/App'
|
2020-01-14 17:06:59 +01:00
|
|
|
|
2020-01-15 21:04:30 +01:00
|
|
|
import './components'
|
2019-06-24 00:29:14 +02:00
|
|
|
|
2020-09-25 23:36:11 +02:00
|
|
|
Vue.use(Notifications)
|
|
|
|
|
2019-05-20 07:37:41 +02:00
|
|
|
const app = new Vue({
|
|
|
|
el: '#app',
|
2020-03-23 17:25:53 +01:00
|
|
|
data: {
|
|
|
|
appSettings: window.appSettings,
|
|
|
|
appVersion: window.appVersion
|
|
|
|
},
|
2019-05-28 17:29:15 +02:00
|
|
|
components: { App },
|
2020-01-12 15:12:32 +01:00
|
|
|
i18n,
|
2019-05-28 17:29:15 +02:00
|
|
|
router,
|
|
|
|
});
|