Vue Guideline: Performance — Use shallowReactive for flat objects. Description: Avoid deep reactivity overhead. Do: shallowReactive for flat state. Don't: reactive for simple objects. Good Example: shallowReactive({ count: 0 }). Bad Example: reactive({ count: 0 }). Severity: Low. Docs: .