rvx
v26.0.5
Published
A signal based rendering library
Downloads
2,155
Maintainers
Readme
This project is licensed under the GNU Affero General Public License v3.0.
rvx!
This is a signal based frontend framework.
import { $, mount } from "rvx";
const count = $(0);
<button on:click={() => { count.value++ }}>
Clicked {count} times
</button>