[Vuejs]-How to make Image blur in vuejs

1👍

The native Vue.js framework doesn’t have such function. If you don’t need to hide the source image very securely, just try to use the CSS attribute "filter: blur()".

According to: MDN Web Doc.

0👍

image-blur library requires an actual low-res image.

You might wanna check out blurhash, which generates a hash string base on the original image, so you can display it while the original image is loading.

Leave a comment