mixed
There will be times when you want a simple store, but with some extra bits. vuenit is quite happy to accept a mix of simple and complicated configuration options, on a per-module basis:
vuenit.store({
loading : false,
simple : {
users : []
},
complex : {
state : {
features : []
},
getters : {
/* ... */
},
mutations : {
/* ... */
}
}
});