0.3.0
Pre-release
Pre-release
What's Changed
- Setup playground for Development.
- Improved persistent layout implementation.
- Fixed
<Link />
data not being reactive. - Enhanced
useForm()
.
Warning
Starting with this version, we're deprecating direct access of form data via useForm()
.
As an example, let's say your code is something like:
const form = useForm({ userId: 1 })
Previously, it was allowed to access its properties directly:
console.log(form.userId)
Going forward, this style is deprecated in favor of accessing form data via data
reactive property:
console.log(form.data.userId)
Change is expected to take full effect when releasing the v1.0 of the adapter.
Full Changelog: 0.2.0...0.3.0