0.0.2 • Published 4 years ago

vue-transitions-css v0.0.2

Weekly downloads
9
License
MIT
Repository
github
Last release
4 years ago

vue-transitions-css

A lightweight CSS library for for adding transitions to Vue components :star:

Demo | Contribution | Changelog

USAGE

Installation via NPM:

npm install vue-transitions-css

In the main.js file:

...

import 'vue-transitions-css';

...

This imports the minified css distribution file globally, available for use anywhere in the project.

In any .vue file:

  <transition name="fade">
    <Content v-if="show" />
  </transition>