1.2.0
🌀 Vue Transify v1.2.0 — “Smooth Page Journeys” :
Released: October 2025
🚀 New Features
Page Transition Helper:
A new component built on top of Vue Router’s ,
enabling effortless page-to-page animations with just one line of code.
<template>
<PageTransitionHelper mode="out-in" />
</template>
Route-based Animations:
Define custom animations per route using meta.transition:
{
path: '/about',
component: AboutView,
meta: { transition: 'slideInUp' }
}
What's Changed
- Added Page Transtion On Top Of router-view by @Redskullvue in #4
Full Changelog: v1.1.1...v1.2.0