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

10 lines
481 B
JavaScript

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