Vue.js
Vue.js adalah Framework JavaScript progresif untuk membangun UI. Learning curve rendah, cocok untuk pemula. Bisa diintegrasikan bertahap ke project existing.
// Vue.js 3 dengan Composition API
<script setup>
import { ref } from 'vue'
const count = ref(0)
</script>
<template>
<button @click="count++">Klik: {{ count }}</button>
</template>
Istilah Terkait
Kembali ke Glosarium Pemrograman
