for (let i = 0; i < dataConfig.config.length; i++) {
const object = dataConfig[i];
let store = new Vuex.Store({
state: {},
mutations: {},
actions: {}
})
new Vue({
el: object.selector,
store,
created() {
this.$store.state.appConfig = object;
},
render: h => h(App)
})
}