mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
9 lines
383 B
JavaScript
9 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');
|