jy-safe-app/store/modules/home.js

18 lines
181 B
JavaScript
Raw Permalink Normal View History

2025-10-14 15:17:30 +08:00
export default {
state:{
"username":"foo",
"age":18
},
getters: {
},
mutations: {
addAge(state) {
state.age += 1
}
},
actions: {
}
}