Complete Vue.js 2 Web Development_ Practical guide to building end-to-end web development solutions with Vue.js 2

(singke) #1
Transitions and Animations Chapter 13

How to do it...


Imagine that you are creating an app to book taxis. The interface we will create will be


simple and fun.


First of all, add the animate.css library to the list of dependencies (refer to the Choosing a


development environment recipe to learn how to do it).


To proceed, we need our usual wrapper:


<div id="app">
</div>

Inside, we will put a button to call for a taxi:


<button @click="taxiCalled = true">
Call a cab
</button>
Free download pdf