bootstrap-sass的工具提示不起作用

时间:2018-01-04 09:58:47

标签: vue.js vuejs2 tooltip bootstrap-sass

在我的vue项目中使用了bootstrap-sass,但工具提示不起作用。 以下是我的代码:

<span class="fa fa-fast-backward page-item-button" data-toggle="tooltip" data-original-title="First Page"></span>

根据bootstrap文档,我们必须在使用它之前初始化工具提示。所以我只是在main.js中添加这个代码,效果很好。

// Initialize all tooltips of bootstrap.
$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})

1 个答案:

答案 0 :(得分:0)

根据bootstrap文档,我们必须在使用它之前初始化工具提示。所以我只是在main.js中添加这个代码,效果很好。

// Initialize all tooltips of bootstrap.
$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})