0.4.2 • Published 4 years ago
nuxel v0.4.2
Nuxel
Nuxel is a state managment library based on Vue 3 and the Composition API. It serves a centralized stores than you can use in web applications.
An example
Suppose you're creating a counter app, and your store looks like this:
import { createStore } from "nuxel"
export const useCounter = createStore({
state: {
counter: 0
},
actions: {
increment(state, by: number = 1) {
state.counter += by
}
}
})
And then you can put all the useCounter
API provided by nuxel
. Read more at the wiki
section at the repo.
Feedback
Issues and pull requests are welcome.
0.4.2
4 years ago
0.4.1
4 years ago
0.4.0
4 years ago
0.3.5
4 years ago
0.3.4
4 years ago
0.3.3
4 years ago
0.3.2
4 years ago
0.3.1
4 years ago
0.3.0
4 years ago
0.2.0
4 years ago
0.2.0-alpha.1
4 years ago
0.1.0-alpha.5
4 years ago
0.1.0-alpha.4
4 years ago
0.1.0-alpha.3
4 years ago
0.1.0-alpha.2
4 years ago
0.1.0-alpha.1
4 years ago