1.0.1 • Published 5 years ago

@appvitalinc/appvital-angular v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

#Appvital Angular

Usage

Installation

Install it through NPM

npm install @appvitalinc/appvital-angular

Include NgAppvitalModule in app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgAppvitalModule } from '@appvitalinc/appvital-angular';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    NgAppvitalModule
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}

Use in .html file

<button
  apvFilepicker
  [apiKey]="'Your Key'"
  [options]="options"
  (onUploadDone)="filepickerCallback($event)"
>
  Open Picker
</button>
1.0.1

5 years ago

1.0.0

5 years ago