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

/* global t */
// bind to window
Vue.prototype.OC = OC
Vue.prototype.t = t

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