[Vuejs]-Transform Based Animation using Vue Transition Wrapper

0👍

I got this to work using a transition wrapper, but the code isn’t as elegant as I’d expected. Particularly the use of the following attributes in the drawer-wrapper class:

top: 100%;
transform: translateY(-100%); 

Fiddle is here

If anyone can simplify the code further, I’d really appreciate it.

Leave a comment