scrimba
Learn Vuex
Share code between Vue apps with Vuex Plugins
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Share code between Vue apps with Vuex Plugins
AboutCommentsNotes
Share code between Vue apps with Vuex Plugins
Expand for more info
index.js
run
preview
console
import Vue from 'vue';
import Vuex from 'vuex';

Vue.use(Vuex);



const store = new Vuex.Store({
//...
plugins: []
})

new Vue({
el: '#app',
data: {
}
});
Console
index.html
-5:40