I just add visjs to my node modules so now I would like to import visjs like that:
import * as Vis from 'vis';
import { Component, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'center-pane',
templateUrl: './center-pane.component.html',
styleUrls: ['./center-pane.component.scss']
})
export class CenterPaneComponent {
constructor(){}
ngAfterViewInit(){
console.log(Vis);
}
}
But it doesn't work, 'vis' is not found.
How can I do ?
To bypass that I currently use the lib like that :
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.18.1/vis.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.18.1/vis.min.css" rel="stylesheet" type="text/css" />
But it's not the best way to use it...