client refactor progress

This commit is contained in:
Craig 2020-01-20 14:36:18 +00:00
parent 46928ec7de
commit e542627805
19 changed files with 1110 additions and 424 deletions

View file

@ -1,12 +1,22 @@
import './assets/styles/main.scss'
import { EVENT } from '~/client/events'
import Vue from 'vue'
import Notifications from 'vue-notification'
import Client from './plugins/neko'
import App from './App.vue'
import store from './store'
Vue.config.productionTip = false
Vue.use(Notifications)
Vue.use(Client)
new Vue({
store,
render: h => h(App),
created() {
this.$client.init(this)
},
}).$mount('#neko')