mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
11 lines
451 B
JavaScript
11 lines
451 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.use(PerfectScrollbar);
|
||
|
mountWithTurbolinks(app, '#storageLocationsTable');
|