This commit is contained in:
advplyr 2021-09-01 20:07:11 -05:00
commit 495af35043
106 changed files with 18798 additions and 0 deletions

7
plugins/server.js Normal file
View file

@ -0,0 +1,7 @@
import Vue from 'vue'
import Server from '../Server'
Vue.prototype.$server = null
export default function ({ store }) {
Vue.prototype.$server = new Server(store)
}