Simple events bus in VueJS
I've been using a global events bus in my web applications for years now and I love this patern. It's a quick (and non intrusive) way »
Fixing blank result in Fetch as google
Does your SPA (single page application) looks like this in "Fetch as google" ? Well, before throwing yourself into SSR (server side rendering), there is »
Git repos organisation ideas
Just a quick post about ways to organise code repositories on your computer (based on my personal experiences) depending on your situation. When working for a »
Tips on how to optimize your webpack bundle
Here is a list of ways to reduce the weight of your app's bundle, ordered by most significant to less significant. (Estimated weight reductions are based »
VueJS : passing DOM element to component props
Just a quick exemple on how to pass a DOM elements into properties of a VueJS component (because I couldn't find that info anywhere apparently !) : export »