Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.js « src - github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2d4b58b35c8102fbe48d9b94a496b425dcdb973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import "core-js/stable";
import "regenerator-runtime/runtime";

import Vue from 'vue'
import App from './App'
import router from './router'
import VueMoment from 'vue-moment'
import AsyncComputed from 'vue-async-computed'
import axios from "axios";
import vuetify from './plugins/vuetify'


// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
__webpack_nonce__ = btoa(OC.requestToken)

// Correct the root of the app for chunk loading
// OC.linkTo matches the apps folders
// eslint-disable-next-line
__webpack_public_path__ = OC.linkTo('ransomware_detection', 'js/')

import "./css/global.scss"

Vue.prototype.t = t
Vue.prototype.n = n
Vue.prototype.OC = OC
Vue.prototype.OCA = OCA
Vue.prototype.$axios = axios

Vue.use(VueMoment);
Vue.use(AsyncComputed);

Vue.config.devtools = true

/* eslint-disable-next-line no-new */
new Vue({
	el: '#content',
	vuetify,
	router,
	render: h => h(App)
})