Kaizen Today I Learned by Ville Säävuori

Posts tagged vue

Adding Simple Search to Hugo

I’ve beeen looking for search options for static sites for a while now and haven’t found anything I’d really like. I wanted to test out buildinga native Web Component with Vue and Vite but in the end I decided to use native Vue component instead. You can test the end result on the homepage.

· Read the full article →

Hiding Uncompiled Vue Moustache Tags

There are situations where your Vue app template may be displayed before it’s fully compiled and therefore expose the uncompiled vue moustache template tags. In most situations this is not a problem but if you happen to get bitten by this issue, you can use v-cloack directive and CSS to hide the element until the template is rendered:

· Read the full article →