2023-10-24 18:54:58 +08:00
|
|
|
import PerfectScrollbar from 'vue3-perfect-scrollbar';
|
|
|
|
import { createApp } from 'vue/dist/vue.esm-bundler.js';
|
2023-08-03 22:03:40 +08:00
|
|
|
import Results from '../../vue/results/results.vue';
|
2023-11-10 02:17:51 +08:00
|
|
|
import { mountWithTurbolinks } from './helpers/turbolinks.js';
|
2023-09-13 18:12:36 +08:00
|
|
|
|
2023-10-24 18:54:58 +08:00
|
|
|
const app = createApp({});
|
|
|
|
app.component('Results', Results);
|
|
|
|
app.use(PerfectScrollbar);
|
|
|
|
app.config.globalProperties.i18n = window.I18n;
|
|
|
|
app.config.globalProperties.ActiveStoragePreviews = window.ActiveStoragePreviews;
|
2023-11-10 02:17:51 +08:00
|
|
|
mountWithTurbolinks(app, '#results');
|