mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 22:25:30 +08:00
14 lines
265 B
JavaScript
14 lines
265 B
JavaScript
|
import TurbolinksAdapter from 'vue-turbolinks';
|
||
|
import Vue from 'vue/dist/vue.esm';
|
||
|
import Results from '../../vue/results/results.vue';
|
||
|
|
||
|
Vue.use(TurbolinksAdapter);
|
||
|
Vue.prototype.i18n = window.I18n;
|
||
|
|
||
|
new Vue({
|
||
|
el: '#results',
|
||
|
components: {
|
||
|
Results
|
||
|
}
|
||
|
});
|