This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-05-04_vuex-01-starting.../src/store/mutations.js

6 lines
91 B
JavaScript

export default {
setAuth(state, payload) {
state.isLoggedIn = payload.isAuth;
}
};