0.0.3 • Published 4 years ago

ng-edit-text v0.0.3

Weekly downloads
8
License
UNLICENSED
Repository
-
Last release
4 years ago

Installation instructions

Method 1

Install ng-edit-text from npm:

npm install ng-edit-text --save

Add needed package to NgModule imports:

import { NgEditText } from 'ng-edit-text';

@NgModule({
  ...
  imports: [NgEditText,...]
  ...
})

Add component to your page:

<ng-edit-text [data]="data" (focusOut)='update($event)'>
	{{data}}
</ng-edit-text>

Demo

Check demo in stackblitz reference.