2018-06-13 07:16:49 -04:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
import App from './App.vue';
|
|
|
|
|
|
|
|
|
|
/* global t */
|
|
|
|
|
// bind to window
|
2018-06-21 02:27:38 -04:00
|
|
|
Vue.prototype.OC = OC;
|
2018-06-13 07:16:49 -04:00
|
|
|
Vue.prototype.t = t;
|
|
|
|
|
|
|
|
|
|
new Vue({
|
|
|
|
|
el: '#accessibility',
|
|
|
|
|
render: h => h(App)
|
|
|
|
|
});
|