From 9df1897099f1bf8fd31812feeeea992c3a9556ff Mon Sep 17 00:00:00 2001 From: Angel Gomez Date: Thu, 6 Sep 2018 15:55:51 -0400 Subject: [PATCH] Add missing semicolon in CSS file from transitions example --- examples/transitions/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/transitions/index.html b/examples/transitions/index.html index 43897ba5e..e18704f31 100644 --- a/examples/transitions/index.html +++ b/examples/transitions/index.html @@ -5,7 +5,7 @@ transition: opacity .5s ease; } .fade-enter, .fade-leave-active { - opacity: 0 + opacity: 0; } .child-view { position: absolute;