How can add bootstrap tooltip inside Vue.js

后端 未结 8 1490
失恋的感觉
失恋的感觉 2020-12-13 13:26

I have a page for listing data from table using Vue.js and Laravel. Listing data is successful. Delete and edit function is going on. For that purpose I have added two

8条回答
  •  天涯浪人
    2020-12-13 13:35

    You should use this syntax, put it on index.html or on your general js file

    $(function () {
      $('body').tooltip({
          selector: '[data-toggle="tooltip"]'
      });
    });
    

提交回复
热议问题