Vue Guideline: Reactivity — Use ref for primitives. Description: ref() for primitive values that need reactivity. Do: ref() for strings numbers booleans. Don't: reactive() for primitives. Good Example: const count = ref(0). Bad Example: const count = reactive(0). Severity: Medium. Docs: https://vuejs.org/guide/essentials/reactivity-fundamentals.html.