Skip to content

Instantly share code, notes, and snippets.

View tonning's full-sized avatar

Laura Tonning tonning

  • 3Z Brands
  • Copenhagen, Denmark
  • 16:11 (UTC +02:00)
  • X @tonning
View GitHub Profile
@adamwathan
adamwathan / v-cloak.md
Last active February 26, 2023 14:26
Useful CSS utilities for Vue.js cloaking

Handy helpers for controlling visibility of elements until Vue has compiled.

Use like:

<div v-cloak>
  <h1>
    <span class="v-cloak--inline">Loading...</span> <!-- Only displayed before compiling -->
    <span class="v-cloak--hidden">{{ post.title }}</span> <!-- Hidden until compiling is finished -->