Forms
安装
npm install @ngxs/form-plugin --save
# or if you are using yarn
yarn add @ngxs/form-plugin使用
import { NgxsFormPluginModule } from '@ngxs/form-plugin';
import { NovelsState } from './novels.state';
@NgModule({
imports: [NgxsModule.forRoot([NovelsState]), NgxsFormPluginModule.forRoot()]
})
export class AppModule {}表单状态
表单设置
动作
更新特定的表单属性
Last updated