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

Building the reusable transition

We decided that our website will feature a transition whenever a card is displayed. Since we intend to reuse the animation with everything in our website, we'd better package it in a component.

Before the Vue instance, we declare the following component:

Vue.component('puff', {   functional: true,   render: function (createElement, context) {     var data = {       props: {         'enter-active-class': 'magictime puffIn',         'leave-active-class': 'magictime puffOut'       }     }     return createElement('transition', data, context.children)   } })

The puffIn and puffOut animations are defined in magic.css.

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