Skip to content

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.