Signals (Preview)
Signals (Preview)
Section titled โSignals (Preview)โimport { signal, computed } from '@angular/core';
const count = signal(0);const doubled = computed(() => count() * 2);
Notes
- API may change while in developer preview.
import { signal, computed } from '@angular/core';
const count = signal(0);const doubled = computed(() => count() * 2);
Notes