vue-transition-group-x
v0.1.0
Published
Enhanced transition-group for Vue
Downloads
16
Readme
VueTransitionGroupX
Enhanced transition-group for Vue
Features
- Staggering: built-in support so you don't have to reinvent the wheel every time. Works with css transitions.
- beforeAllLeave event: runs before beforeLeave and leave of all the leaving elements. This can be used to give leaving elements an explicit absolute position and prevent them from moving.
Installation
npm install --save vue-transition-group-x
yarn add vue-transition-group-x
Usage
Bundler (Webpack, Rollup)
import Vue from 'vue'
import VueTransitionGroupX from 'vue-transition-group-x'
Vue.use(VueTransitionGroupX)
This will register the transition-group-x
component.
Browser
<!-- Include after Vue -->
<!-- Local files -->
<script src="vue-transition-group-x/dist/vue-transition-group-x.js"></script>
<!-- From CDN -->
<script src="https://unpkg.com/vue-transition-group-x"></script>
The transition-group-x
component will be installed automatically,
you do not need to call Vue.use
.
Development
Launch visual tests
npm run dev
Launch Karma with coverage
npm run dev:coverage
Build
Bundle the js to the dist
folder:
npm run build
Publishing
The prepublish
hook will ensure dist files are created before publishing. This
way you don't need to commit them in your repository.
# Bump the version first
# It'll also commit it and create a tag
npm version
# Push the bumped package and tags
git push --follow-tags
# Ship it 🚀
npm publish