0.0.12 • Published 4 months ago
ngx-voyage v0.0.12
ngx-voyage
ngx-voyage
is a File Explorer component for Angular and PrimeNG.\
Demo and docs: https://mschn.github.io/ngx-voyage/
Quickstart
Install ngx-voyage
with npm
:
npm install ngx-voyage
Use <ngx-voyage>
in your app:
import { File, NgxVoyageComponent } from "ngx-voyage";
@Component({
selector: "app-root",
imports: [NgxVoyageComponent],
template: '<ngx-voyage [path]="path()" [files]="files()"></ngx-voyage>',
})
export class AppComponent {
path = signal("/home/");
files = signal<File[]>([]);
}