Q1. What is the difference between ref and reactive, and what are the pitfalls?
ref creates a reactive reference that can hold any value, including primitives, and is accessed through .value in JavaScript while auto-unwrapping in templates. reactive ...