v0.2.0
✨ Highlights
Docs page
We have a new docs page! Check it out!
It is still a MASSIVE work in progress. So, please raise a PR or issue to sort anything out!
DIrectives
We've now added a baked option to each directive that uses it in its parent's composable.
We also now have v-from-to as the directive version of useGsap, and v-aos as the directive for useAnimateOnScroll.
Example
If your v-split-animate was this:
<div
v-split-animate="{
splitBy: 'words',
translate: true,
}"
>
Hello there!
</div>Change it to this:
<div
v-split-animate="{
baked: true,
options: {
splitBy: 'words',
translate: true,
},
}"
>
Hello there!
</div>Have a wonderful day! 😊
🚀 Enhancements
- useGenericTransition: Create 1-2-3 transitions (b59ff97)
- useGenericTransition: Simplify composable (a7b9268)
- docs: Add docs website (e5d2984)
⚠️ Change baked locations, add baked option to directive (9920cc6)
🩹 Fixes
- README: Image (adad27e)
📖 Documentation
- README: Add docs link (f9a4a7a)
- website: Make README as the vitepress pages (6685423)
- fix: Dead link (da55a42)
- index: Add link (169032c)
- vitepress: Complete auto-generate docs (0801d64)
- vitepress: Simplify route rewrite (ea6fd14)
- Add more (520e295)
- vitepress: GenerateSidebar function (bf0cf5b)
- vitepress: Add SEO (ead0671)
- index.md: Fix get started (4618634)
- README: Remove redundant documentation (bb5fc2b)
🏡 Chore
- README: Add banner (4728118)
⚠️ Breaking Changes
⚠️ Change baked locations, add baked option to directive (9920cc6)
❤️ Contributors
- Steven John stevenjpx2@gmail.com