|
@@ -4,6 +4,7 @@ import EvaIcons from 'vue-eva-icons'
|
4
|
4
|
import axios from 'axios'
|
5
|
5
|
import moment from 'moment'
|
6
|
6
|
import App from './App.vue'
|
|
7
|
+import VueGtag from "vue-gtag";
|
7
|
8
|
import router from './router'
|
8
|
9
|
import store from './store'
|
9
|
10
|
import * as VueGoogleMaps from 'vue2-google-maps'
|
|
@@ -12,7 +13,7 @@ import VueSocialSharing from 'vue-social-sharing'
|
12
|
13
|
import VueCurrencyInput from 'vue-currency-input'
|
13
|
14
|
import VueFloatLabel from 'vue-float-label'
|
14
|
15
|
import VueCryptojs from 'vue-cryptojs'
|
15
|
|
-import VueAnalytics from 'vue-analytics'
|
|
16
|
+//import VueAnalytics from 'vue-analytics'
|
16
|
17
|
import JsonExcel from 'vue-json-excel'
|
17
|
18
|
import VModal from 'vue-js-modal'
|
18
|
19
|
import vueFloatLabel from 'vue-float-label'
|
|
@@ -50,14 +51,22 @@ Vue.use(VueGoogleMaps, {
|
50
|
51
|
},
|
51
|
52
|
})
|
52
|
53
|
//More info @ https://webdeasy.de/en/vue-analytics-en/
|
53
|
|
-Vue.use(VueAnalytics, {
|
54
|
|
- id: 'UA-128891091-1',
|
55
|
|
- router,
|
56
|
|
-})
|
|
54
|
+// Vue.use(VueAnalytics, {
|
|
55
|
+// id: 'UA-128891091-1',
|
|
56
|
+// router,
|
|
57
|
+// })
|
|
58
|
+Vue.use(VueGtag, {
|
|
59
|
+ config: {
|
|
60
|
+ id: 'G-WG43TKF30K',
|
|
61
|
+ params: {
|
|
62
|
+ send_page_view: false
|
|
63
|
+ }
|
|
64
|
+ }
|
|
65
|
+}, router)
|
57
|
66
|
|
58
|
67
|
Vue.config.productionTip = false
|
59
|
|
-axios.defaults.baseURL = 'http://localhost:57260'
|
60
|
|
- //axios.defaults.baseURL = 'https://www.pvsl.co.za:86/'
|
|
68
|
+//axios.defaults.baseURL = 'http://localhost:57260'
|
|
69
|
+ axios.defaults.baseURL = 'https://www.pvsl.co.za:86/'
|
61
|
70
|
//axios.defaults.baseURL = 'http://training.provision-sa.com:120/'
|
62
|
71
|
|
63
|
72
|
Vue.prototype.$axios = axios
|