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()
})
Source:stackexchange.com