[Vuejs]-Tooltip for bootstrap-sass is not work

0👍

According to bootstrap document, we must initialize tooltip before use it. So I just add this code in my main.js, and it works well.

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

Leave a comment