Get the current state
After creating a store, let's try to consume it into our app. To get the current state we need to use the copy
method of the store.
In this example we inject the store into the app controller to populate the scope variable count
.
controller-a.js
We can also pass a string
to the copy
method to directly access the state property. Just like this example.
controller-a.js
Last updated
Was this helpful?