mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
18 lines
584 B
JavaScript
18 lines
584 B
JavaScript
/* global notTurbolinksPreview */
|
|
|
|
import { createApp } from 'vue/dist/vue.esm-bundler.js';
|
|
import ActionToolbar from '../../vue/components/action_toolbar.vue';
|
|
import { mountWithTurbolinks } from './helpers/turbolinks.js';
|
|
|
|
window.initActionToolbar = () => {
|
|
if (window.actionToolbarComponent) return;
|
|
|
|
if (notTurbolinksPreview()) {
|
|
const app = createApp({});
|
|
app.component('ActionToolbar', ActionToolbar);
|
|
app.config.globalProperties.i18n = window.I18n;
|
|
mountWithTurbolinks(app, '#actionToolbar', () => {
|
|
window.actionToolbarComponent = null
|
|
});
|
|
}
|
|
}
|