How to extend VueJS router-link
I couldn't find that info over the internet, so here is how you can create a vue component that extends the router-link component of vue-router : < »
Why CDN hosted libraries are bad
Loading libraries from CDNs is generally perceived as a simple way to speed boost the loading time of your website, but don't stop your thinking from »
How to see the webpack config inside laravel-mix
I couldn't find that info on the internet apparently... I had to dig into the laravel-mix source code to find out : const mix = require('laravel-mix'); // ...[your »
Best way to import lodash
Here is how I import lodash in my projects : import _findIndex from 'lodash/findIndex.js' And here is why : It works because inside the installed lodash »
How to space buttons properly (or anything else really)
I often see people struggling to properly add space between buttons in a group of buttons (that will work well in responsive too). So here is »