A bit late, but here is my question:
HTML:
<span :data-toggle="tooltip" :data-original-title="tooltipTitle" > {{ tooltipTitle }} </span>
Vu:
methods: { tooltipTitle: function() { var title = this.col.col_spec.title; if (!!title) return title; return false; } }
This will remove the attribute "source-source header" if it is not displayed, therefore, completely remove the tooltip. You should use "data-original-title" instead of "title" because Bootstrap will automatically add it after initializing the "title" attribute, and changing the "title" to false will not delete the "data-original-title".
source share