2023-09-28 20:45:28 +08:00
|
|
|
/* global notTurbolinksPreview */
|
2023-10-24 18:54:58 +08:00
|
|
|
import { createApp } from 'vue/dist/vue.esm-bundler.js';
|
2023-09-28 20:45:28 +08:00
|
|
|
import ExportStockConsumptionModal from '../../vue/repository_row/export_stock_consumption_modal.vue';
|
2023-11-10 02:17:51 +08:00
|
|
|
import { mountWithTurbolinks } from './helpers/turbolinks.js';
|
2023-09-28 20:45:28 +08:00
|
|
|
|
|
|
|
window.initExportStockConsumptionModal = () => {
|
|
|
|
if (window.exportStockConsumptionModalComponent) return;
|
|
|
|
|
|
|
|
if (notTurbolinksPreview()) {
|
2023-10-24 18:54:58 +08:00
|
|
|
const app = createApp({});
|
|
|
|
app.component('ExportStockConsumptionModal', ExportStockConsumptionModal);
|
|
|
|
app.config.globalProperties.i18n = window.I18n;
|
2023-11-10 02:17:51 +08:00
|
|
|
mountWithTurbolinks(app, '#exportStockConsumtionModal');
|
2023-09-28 20:45:28 +08:00
|
|
|
}
|
|
|
|
};
|