scinote-web/app/javascript/packs/vue/scinote_edit_download.js
Giga Chubinidze 5250bade57 hound fix
2024-01-12 03:16:10 +04:00

8 lines
383 B
JavaScript

import { createApp } from 'vue/dist/vue.esm-bundler.js';
import ScinoteEditDownload from '../../vue/shared/scinote_edit_download.vue';
import { mountWithTurbolinks } from './helpers/turbolinks.js';
const app = createApp({});
app.component('ScinoteEditDownload', ScinoteEditDownload);
app.config.globalProperties.i18n = window.I18n;
mountWithTurbolinks(app, '#scinoteEditDownload');