summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/mixins/tooltip.js
blob: 2e3b716a36cb2ee02e06b45d5ffe90bf6afbe769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default {
  mounted() {
    this.$nextTick(() => {
      $(this.$refs.tooltip).tooltip();
    });
  },

  updated() {
    this.$nextTick(() => {
      $(this.$refs.tooltip).tooltip('fixTitle');
    });
  },

  beforeDestroy() {
    $(this.$refs.tooltip).tooltip('destroy');
  },
};