mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
15 lines
481 B
JavaScript
15 lines
481 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 (notTurbolinksPreview()) {
|
|
const app = createApp({});
|
|
app.component('ActionToolbar', ActionToolbar);
|
|
app.config.globalProperties.i18n = window.I18n;
|
|
mountWithTurbolinks(app, '#actionToolbar');
|
|
}
|
|
}
|