Forms

This provides a generic form controls and utilities for angular 2 forms

Requirements

To setup the forms module you will need to:

Install forms to your project

npm install @vendasta/forms --save

Next, you will need to import and setup your navigation module (generally in app.module.ts)

import { FormModule } from "@vendasta/forms";
…
@NgModule({
  …
  imports: [
    …, FormModule, …
  ]
})