clean code

git workflow

A good workflow leads to a usable, in-use and useful git tree. Get up to date 1. Update the master branch in my local environment: git checkout master git pull As master is

Yoda hipster style

Lorsqu'il est nécessaire de faire un test d'égalité, on utilise la commande if permettant de tester une condition par exemple l'égalité entre deux opérandes. Puisque l'opérateur d'égalité == est commutatif, alors cette condition peut

Vuex state and getters

With vuex is there a reason why it's better to access state directly than via a getter if the getter is just returning the state? Let us first take care to illustrate this