私の流星アプリケーションでintro.jsを使用しようとしています。流星1.4.1.1でintro.js形式のnpmパッケージを使用する方法は?
import { Template } from 'meteor/templating';
import { ReactiveVar } from 'meteor/reactive-var';
// import introJs from 'intro.js';
var introJs = require('intro.js');
import './main.html';
.....//some code here
Template.hello.events({
'click button'(event, instance) {
// increment the counter when button is clicked
instance.counter.set(instance.counter.get() + 1);
},
'click #introjs'(e,i){
console.log("call me");
introJs("#introjs").start();
}
});
が、私はこの問題を解決するにはどうすればよい
を与えますか?ありがとう。TypeError: introJs is not a function
私も同じ質問があります。何か見つけましたか? –
検索中、私はこのhttps://github.com/zhouzhuojie/meteor-introjsリンクを得て、それが有益であるかどうかを確認してください。 –
@Arjun Chaudharyいいえ私は方法を見つけようとしています。流星フォーラム[link](https://forums.meteor.com/t/not-working-bootstraptour-with-meteor-1-4/28859/6)のこの記事を参照してください –