Progressive user-friendly Javascript framework
Vue.js is designed to be incrementally adoptable, fitting cleanly between simple scripts and complex single-page apps (SPAs) with state routers.
<template>
<button @click="count++">Count: {{ count }}</button>
</template>
<script setup>
import { ref } from 'vue';
const count = ref(0);
</script>