neko/client/src/main.ts

23 lines
419 B
TypeScript
Raw Normal View History

2020-01-13 21:05:38 +13:00
import './assets/styles/main.scss'
2020-01-21 03:36:18 +13:00
import { EVENT } from '~/client/events'
2020-01-13 21:05:38 +13:00
import Vue from 'vue'
import Notifications from 'vue-notification'
2020-01-21 03:36:18 +13:00
import Client from './plugins/neko'
2020-01-13 21:05:38 +13:00
import App from './App.vue'
2020-01-21 03:36:18 +13:00
import store from './store'
2020-01-13 21:05:38 +13:00
Vue.config.productionTip = false
2020-01-21 03:36:18 +13:00
2020-01-13 21:05:38 +13:00
Vue.use(Notifications)
2020-01-21 03:36:18 +13:00
Vue.use(Client)
2020-01-13 21:05:38 +13:00
new Vue({
2020-01-21 03:36:18 +13:00
store,
2020-01-13 21:05:38 +13:00
render: h => h(App),
2020-01-21 03:36:18 +13:00
created() {
this.$client.init(this)
},
2020-01-13 21:05:38 +13:00
}).$mount('#neko')