尝试将bootstrap-tour与 bootstrap 4 一起使用,但出现以下错误:
TypeError:n.popover 不是函数
我正在初始化这样的代码:
var tour = new Tour({
steps: [
{
element: "#nextLesson",
title: "Title of my step",
content: "Content of my step"
}
]
});
tour.init();
tour.start();