2023-10-24 18:54:58 +08:00
|
|
|
import { createApp } from 'vue/dist/vue.esm-bundler.js';
|
2023-07-11 15:27:15 +08:00
|
|
|
import ProtocolFileImportModal from '../../vue/protocol_import/file_import_modal.vue';
|
2023-11-10 02:17:51 +08:00
|
|
|
import { mountWithTurbolinks } from './helpers/turbolinks.js';
|
2023-07-11 15:27:15 +08:00
|
|
|
|
|
|
|
window.initProtocolFileImportModalComponent = () => {
|
2023-10-24 18:54:58 +08:00
|
|
|
const app = createApp({});
|
|
|
|
app.component('ProtocolFileImportModal', ProtocolFileImportModal);
|
|
|
|
app.config.globalProperties.i18n = window.I18n;
|
2023-11-10 02:17:51 +08:00
|
|
|
mountWithTurbolinks(app, '#protocolFileImportModal');
|
2023-07-11 15:27:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
initProtocolFileImportModalComponent();
|