main.js 285 Bytes
Newer Older
quentin.vrel's avatar
quentin.vrel committed
1 2 3 4 5 6
import Vue from 'vue'
import App from './App.vue'
import router from './router'

Vue.config.productionTip = false

quentin.vrel's avatar
quentin.vrel committed
7
const apiRoot = "http://localhost/CDAW/projet-cdaw/BackEnd/src/index.php";
quentin.vrel's avatar
quentin.vrel committed
8 9
Vue.prototype.$apiRoot = apiRoot;

quentin.vrel's avatar
quentin.vrel committed
10 11 12 13
new Vue({
  router,
  render: h => h(App)
}).$mount('#app')