mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-22 15:39:08 +08:00
13 lines
378 B
JavaScript
13 lines
378 B
JavaScript
import TurbolinksAdapter from 'vue-turbolinks';
|
|
import Vue from 'vue/dist/vue.esm';
|
|
import PerfectScrollbar from 'vue2-perfect-scrollbar';
|
|
import UserPreferences from '../../vue/user_preferences/container.vue';
|
|
|
|
Vue.use(TurbolinksAdapter);
|
|
Vue.use(PerfectScrollbar);
|
|
Vue.prototype.i18n = window.I18n;
|
|
|
|
new Vue({
|
|
el: '#user_preferences',
|
|
components: { UserPreferences },
|
|
});
|