PJPravin Jadhavinlearnvue.hashnode.dev·Feb 4, 2025 · 2 min readWhat is v-bind and v-on?What is v-bind and v-on? v-bind: This is used to bind data from your JavaScript to the HTML. For example, :value="text" means the input's value is connected to the text variable in your JavaScript. v-on: This is used to listen to events (like typin...00
PJPravin Jadhavinlearnvue.hashnode.dev·Feb 3, 2025 · 2 min readDeclarative Rendering in Vue (Simplified)Vue lets you connect your data (state) to your HTML easily. Instead of manually updating the page, you simply write your HTML to "reflect" your data. When your data changes, Vue automatically updates the HTML. 1. Creating Reactive Data You can create...00