mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
11 lines
525 B
JavaScript
11 lines
525 B
JavaScript
import PerfectScrollbar from 'vue3-perfect-scrollbar';
|
|
import { createApp } from 'vue/dist/vue.esm-bundler.js';
|
|
import 'vue3-perfect-scrollbar/dist/vue3-perfect-scrollbar.css';
|
|
import ShareLinkContainer from '../../vue/shareable_links/container.vue';
|
|
import { mountWithTurbolinks } from './helpers/turbolinks.js';
|
|
|
|
const app = createApp({});
|
|
app.component('ShareTaskContainer', ShareLinkContainer);
|
|
app.use(PerfectScrollbar);
|
|
app.config.globalProperties.i18n = window.I18n;
|
|
mountWithTurbolinks(app, '#share-task-container');
|