我想在我的应用中集成intro.js。
我得到了intro.js框架(2.4.0)和@types(2.0.28)。 我的代码构建,但不执行。
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my',
template: require('./my.component.html')
})
export class My implements OnInit {
ngOnInit() {
introJs('introduction').start();
}
}
我有这个错误:
Unhandled Promise rejection: introJs is not defined ; Zone: angular ; Task: Promise.then ; Value: ReferenceError: introJs is not defined(…) ReferenceError: introJs is not defined
你有什么想法吗?