Add initial authentication system

This commit is contained in:
KevinNThomas
2021-07-17 15:39:23 -07:00
parent b742befdbd
commit 1871ea9eb7
34 changed files with 18053 additions and 1 deletions

18
src/main.js Normal file
View File

@@ -0,0 +1,18 @@
// 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'
Vue.prototype.$http = Axios;
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})