Revert "Add eslint-plugin-vue"

This reverts commit 6479b32063.
This commit is contained in:
KevinNThomas
2021-07-17 17:31:34 -07:00
parent 7548d4a19a
commit ca4c7804e0
11 changed files with 3389 additions and 4903 deletions

View File

@@ -5,14 +5,14 @@ import App from './App'
import router from './router'
import Axios from 'axios'
Vue.prototype.$http = Axios
Vue.prototype.$http = Axios;
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
el: '#app',
router,
components: { App },
template: '<App/>'
})