blob: 5d9b2a2d0a8ae4c0bb8f2a8649aed9282f306188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Vue from 'vue';
import App from './App.vue';
/* global t */
// bind to window
Vue.prototype.OC = OC;
Vue.prototype.t = t;
new Vue({
el: '#accessibility',
render: h => h(App)
});
|