Blame view

src/main.js 1 KB
8a0dd59d9   Digvijay Singh   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  // The Vue build version to load with the `import` command
  // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
  import Vue from 'vue'
  import App from './App'
  import router from './router'
  import axios from 'axios'
  
  // Import the Auth0 configuration
  import { domain, clientId } from "../auth_config.json"
  
  // Import the plugin here
  import { Auth0Plugin } from "./auth"
  import Vuelidate from 'vuelidate'
298fff252   Digvijay Singh   new design added
14
  import moment from 'moment'
8a0dd59d9   Digvijay Singh   first commit
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  
  Vue.use(Vuelidate)
      // Install the authentication plugin here
  Vue.use(Auth0Plugin, {
      domain,
      clientId,
      redirect: false,
      onRedirectCallback: appState => {
          router.push(
              appState && appState.targetUrl ?
              appState.targetUrl :
              window.location.pathname
          );
      }
  });
  
  Vue.config.productionTip = false
298fff252   Digvijay Singh   new design added
32
33
  Vue.prototype.moment = moment
  axios.defaults.baseURL = 'http://174.138.121.70:3006/pg'
8a0dd59d9   Digvijay Singh   first commit
34
35
36
37
38
39
40
41
  
  /* eslint-disable no-new */
  new Vue({
      el: '#app',
      router,
      components: { App },
      template: '<App/>'
  })