scinote-web/app/javascript/packs/vue/forms_table.js
andrej-scinote 705fc4da14 Merge pull request #8093 from andrej-scinote/aj_SCI_11354
Fix reordering of the form fields [SCI-11354]
2024-12-10 15:59:39 +01:00

10 lines
410 B
JavaScript

import { createApp } from 'vue/dist/vue.esm-bundler.js';
import PerfectScrollbar from 'vue3-perfect-scrollbar';
import FormsTable from '../../vue/forms/table.vue';
import { mountWithTurbolinks } from './helpers/turbolinks.js';
const app = createApp();
app.component('FormsTable', FormsTable);
app.config.globalProperties.i18n = window.I18n;
app.use(PerfectScrollbar);
mountWithTurbolinks(app, '#formsTable');