CAROLINA DOCS


Store

The "store" app has a service that just provides an object that you can arbitrarily attach things to.

// somewhere
App.$store.data.myValue = 5;

// somewhere else
console.log(App.$store.myValue); // => 5

CAROLINA DOCS