Skip to Content
Vue.js 2 Cookbook
book

Vue.js 2 Cookbook

by Andrea Passaglia
April 2017
Intermediate to advanced
454 pages
12h 51m
English
Packt Publishing
Content preview from Vue.js 2 Cookbook

There's more...

Transitions are cool, but there is a tree that is blocking our view in this recipe and it's ruining the transition's reputation; to follow along, consider the following HTML:

<div id="app">   <p>     Transitions are awesome, careful<br/>     please don't use them always.   </p>   <transition name="fade">     <img id="tree"       src="http://i.imgur.com/QDpnaIE.png"       v-show="show"       @click="show = false"/>   </transition> </div>

A little bit of CSS is as follows:

#tree {   position: absolute;   left: 7.5em;   top: 0em;   cursor: pointer; }  .fade-leave-active {   transition: opacity .5s;   opacity: 0 }

Finally, a simple Vue instance is required:

new Vue({     el: '#app',   data: {     show: true   } })

When we run the application, this is what we get: ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Vue.js 2

Learning Vue.js 2

Olga Filipova
Pro Vue.js 2

Pro Vue.js 2

Adam Freeman

Publisher Resources

ISBN: 9781786468093Supplemental Content