mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
11 lines
486 B
JavaScript
11 lines
486 B
JavaScript
import PerfectScrollbar from 'vue3-perfect-scrollbar';
|
|
import { createApp } from 'vue/dist/vue.esm-bundler.js';
|
|
import Results from '../../vue/results/results.vue';
|
|
import { mountWithTurbolinks } from './helpers/turbolinks.js';
|
|
|
|
const app = createApp({});
|
|
app.component('Results', Results);
|
|
app.use(PerfectScrollbar);
|
|
app.config.globalProperties.i18n = window.I18n;
|
|
app.config.globalProperties.ActiveStoragePreviews = window.ActiveStoragePreviews;
|
|
mountWithTurbolinks(app, '#results');
|