mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-06 10:20:26 +02:00
client refactor progress
This commit is contained in:
parent
46928ec7de
commit
e542627805
19 changed files with 1110 additions and 424 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue