Forms
Installation
npm i @ngxs/form-plugin
# or if you are using yarn
yarn add @ngxs/form-plugin
# or if you are using pnpm
pnpm i @ngxs/form-pluginUsage
import { provideStore } from '@ngxs/store';
import { withNgxsFormPlugin } from '@ngxs/form-plugin';
import { NovelsState } from './novels.state';
export const appConfig: ApplicationConfig = {
providers: [provideStore([NovelsState], withNgxsFormPlugin())]
};Form State
Form Setup
Actions
Updating Specific Form Properties
Debouncing
Last updated

