Unison.js is a framework that facilitates seamless deep signal integration within React while maintaining compatibility with other popular frameworks like Vue and Solid.
Please read the explanation at : Why ?
import { ref } from "@unisonjs/vue";
function Counter() {
const count = ref(0);
setInterval(() => count.value++, 1000);
return (
<div>
<p>Count: {count.value}</p>
</div>
);
}
This is an example of a counter that increments every second.
Currently, pull request are not accepted but you can fill a issue to report a bug or request a feature.
Copyright (c) 2024, William (Abdullah) NGBAMA
The Unison.js project is powered by: React created by Facebook and Vue created by Evan You