0.0.6 • Published 5 years ago
ui-angular-draggable v0.0.6
UI Angular Draggable
This package contains Angular loader. It is very easy to use. Please follow the below steps to setup in your Angular project.
Install package
npm install --save ui-angular-draggable
Add the Module inside app.module.ts
file
import { AngularDraggableModule } from 'ui-angular-draggable';
@NgModule({
declarations: [...
AppComponent
],
imports: [
...
AngularDraggableModule
],
providers: [],
bootstrap: [AppComponent]
})
Add the attribute into your template file element
<h2 isDraggable></h2>