Agregado analytics
This commit is contained in:
parent
e9258ba6ff
commit
cf048a688f
@ -1,6 +1,6 @@
|
||||
# Horarios UNSA
|
||||
|
||||
[![Build Status](https://travis-ci.com/Araozu/horarios-unsa.svg?branch=master)](https://travis-ci.com/Araozu/horarios-unsa)
|
||||
[![Build Status](https://travis-ci.org/Araozu/horarios-unsa.svg?branch=master)](https://travis-ci.com/Araozu/horarios-unsa)
|
||||
|
||||
## ¿Horario erroneo/desactualizado?
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
||||
"pug-plain-loader": "^1.0.0",
|
||||
"sass": "^1.19.0",
|
||||
"sass-loader": "^8.0.0",
|
||||
"vue-gtag": "^1.6.2",
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"yaml-loader": "^0.5.0"
|
||||
},
|
||||
|
@ -17,6 +17,7 @@ devDependencies:
|
||||
pug-plain-loader: 1.0.0_pug@2.0.4
|
||||
sass: 1.25.0
|
||||
sass-loader: 8.0.2_sass@1.25.0
|
||||
vue-gtag: 1.6.2
|
||||
vue-template-compiler: 2.6.11
|
||||
yaml-loader: 0.5.0
|
||||
lockfileVersion: 5.1
|
||||
@ -8169,6 +8170,10 @@ packages:
|
||||
node: '>=0.10.0'
|
||||
resolution:
|
||||
integrity: sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=
|
||||
/vue-gtag/1.6.2:
|
||||
dev: true
|
||||
resolution:
|
||||
integrity: sha512-kKjVP+ch89IkGWfnszd02Lbg4W76rsPlrCZrRzDBoQaBPPx5TTQIL/bbt9hxcWDcRDNdAeh2NCYfijl/TAD+Mw==
|
||||
/vue-hot-reload-api/2.3.4:
|
||||
dev: true
|
||||
resolution:
|
||||
@ -8720,6 +8725,7 @@ specifiers:
|
||||
sass: ^1.19.0
|
||||
sass-loader: ^8.0.0
|
||||
vue: ^2.6.10
|
||||
vue-gtag: ^1.6.2
|
||||
vue-router: ^3.1.3
|
||||
vue-template-compiler: ^2.6.10
|
||||
vuex: ^3.0.1
|
||||
|
15
src/main.js
15
src/main.js
@ -1,15 +1,20 @@
|
||||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
import VueGtag from "vue-gtag"
|
||||
import router from './router'
|
||||
import store from './store'
|
||||
import './registerServiceWorker'
|
||||
import "normalize-css"
|
||||
import "./sass/Global.sass"
|
||||
|
||||
Vue.config.productionTip = false
|
||||
Vue.config.productionTip = false;
|
||||
|
||||
Vue.use(VueGtag, {
|
||||
config: { id: "UA-113477820-2" }
|
||||
}, router);
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
store,
|
||||
render: h => h(App)
|
||||
}).$mount('#app')
|
||||
router,
|
||||
store,
|
||||
render: h => h(App)
|
||||
}).$mount('#app');
|
||||
|
Loading…
Reference in New Issue
Block a user