mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-22 23:48:18 +08:00
20 lines
463 B
JavaScript
20 lines
463 B
JavaScript
|
/* global notTurbolinksPreview */
|
||
|
|
||
|
import TurbolinksAdapter from 'vue-turbolinks';
|
||
|
import Vue from 'vue/dist/vue.esm';
|
||
|
import ItemRelationshipsModal from '../../vue/item_relationships/ItemRelationshipsModal.vue';
|
||
|
|
||
|
Vue.use(TurbolinksAdapter);
|
||
|
Vue.prototype.i18n = window.I18n;
|
||
|
|
||
|
function initItemRelationshipsModal() {
|
||
|
new Vue({
|
||
|
el: '#itemRelationshipsModalWrapper',
|
||
|
components: {
|
||
|
ItemRelationshipsModal
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
initItemRelationshipsModal();
|