2020-07-29 20:56:03 +02:00
|
|
|
// @ts-nocheck
|
|
|
|
/*
|
|
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
|
|
|
* This file is part of appreports which is released under GPL-3.0-or-later.
|
|
|
|
* See file 'LICENSE' for full license details.
|
|
|
|
* Created by Timo Hocker <timo@scode.ovh>, July 2020
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Vue from 'vue';
|
|
|
|
import App from './App.vue';
|
|
|
|
import router from './router';
|
|
|
|
import store from './store';
|
|
|
|
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
|
|
|
|
new Vue ({
|
|
|
|
router,
|
|
|
|
store,
|
|
|
|
render: (h) => h (App)
|
|
|
|
})
|
|
|
|
.$mount ('#app');
|