Vue Guideline: Accessibility — Bind aria attributes dynamically. Description: Keep ARIA in sync with state. Do: :aria-expanded="isOpen". Don't: Static ARIA values. Good Example: :aria-expanded="menuOpen". Bad Example: aria-expanded="true". Severity: Medium. Docs: .