summaryrefslogtreecommitdiffstats
path: root/src/main.js
blob: bcbbfe2a46728c33e1b4fa81e86751895ae89600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Vue from 'vue'
import Vuex from 'vuex'
import App from './App'

Vue.prototype.t = t
Vue.prototype.n = n
Vue.prototype.OC = OC
Vue.prototype.OCA = OCA

Vue.use(Vuex)

export default new Vue({
	el: '#content',
	render: h => h(App),
})