summaryrefslogtreecommitdiffstats
path: root/src/main.js
blob: 71ebfa1c59140830e1d9288e3a638d5969c0a10c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Vue from 'vue'
import App from './App'

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

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