mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 22:25:30 +08:00
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
|
import TurbolinksAdapter from 'vue-turbolinks';
|
||
|
import Vue from 'vue/dist/vue.esm';
|
||
|
import OpenVectorEditor from '../../vue/ove/OpenVectorEditor.vue';
|
||
|
|
||
|
Vue.use(TurbolinksAdapter);
|
||
|
Vue.prototype.i18n = window.I18n;
|
||
|
|
||
|
new Vue({
|
||
|
el: '#open-vector-editor',
|
||
|
components: { OpenVectorEditor }
|
||
|
});
|