mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-15 00:06:10 +08:00
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
|
|
import Vue from 'vue/dist/vue.esm';
|
|
import TopMenuContainer from '../../../vue/navigation/top_menu.vue';
|
|
|
|
Vue.prototype.i18n = window.I18n;
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
new Vue({
|
|
el: '#sciNavigationTopMenuContainer',
|
|
components: {
|
|
'top-menu-container': TopMenuContainer
|
|
}
|
|
});
|
|
});
|