mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-06 03:46:39 +08:00
13 lines
511 B
JavaScript
13 lines
511 B
JavaScript
import { createApp } from 'vue/dist/vue.esm-bundler.js';
|
|
import PerfectScrollbar from 'vue3-perfect-scrollbar';
|
|
import AssignedItems from '../../vue/my_module/assigned_items.vue';
|
|
import { mountWithTurbolinks } from './helpers/turbolinks.js';
|
|
|
|
const app = createApp();
|
|
app.component('AssignedItems', AssignedItems);
|
|
app.config.globalProperties.i18n = window.I18n;
|
|
app.use(PerfectScrollbar);
|
|
|
|
window.assignedItemsTable = mountWithTurbolinks(app, '#assignedItems', () => {
|
|
delete window.assignedItemsTable;
|
|
});
|