2020-02-06 07:10:29 -05:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import store from './store';
|
|
|
|
import App from './components/app.vue';
|
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
2020-04-09 02:09:30 -04:00
|
|
|
export default initialData => {
|
2020-02-06 07:10:29 -05:00
|
|
|
const el = document.getElementById('js-code-navigation');
|
|
|
|
|
2020-04-09 02:09:30 -04:00
|
|
|
store.dispatch('setInitialData', initialData);
|
2020-02-06 07:10:29 -05:00
|
|
|
|
|
|
|
return new Vue({
|
|
|
|
el,
|
|
|
|
store,
|
|
|
|
render(h) {
|
|
|
|
return h(App);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|