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