Skip to content

Instantly share code, notes, and snippets.

@jlis
Created June 8, 2018 11:47
Show Gist options
  • Select an option

  • Save jlis/837a664b65966d49e7f032f6fb2c6595 to your computer and use it in GitHub Desktop.

Select an option

Save jlis/837a664b65966d49e7f032f6fb2c6595 to your computer and use it in GitHub Desktop.
vue.js Cloak Fade
[v-cloak] {
display: none!important;
}
.cloak-fade:not([v-cloak]) {
opacity: 0;
-webkit-animation-name: cloak-fade-in;
animation-name: cloak-fade-in;
-webkit-animation-duration: .3s;
animation-duration: .3s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment