mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
* wip: vuex structure * add missing files * client: do not fail dev build on eslint error * eslint does not block compilation, mount app when data is ready * eslintrc.js -> eslintrc
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
export function SET_TITLE (state, title) {
|
|
state.title = title;
|
|
}
|
|
|
|
export function SET_USER (state, userJson) {
|
|
state.user = userJson;
|
|
} |