scinote-web/app/javascript/packs/vue/protocols_list.js
2025-06-16 11:28:48 +02:00

12 lines
527 B
JavaScript

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