Vue Guideline: Props — Avoid mutating props. Description: Props should be read-only. Do: Emit events to parent for changes. Don't: Direct prop mutation. Good Example: emit('update:modelValue', newVal). Bad Example: props.modelValue = newVal. Severity: High. Docs: .