Vue Chartjs label false

JavaScript
...
options: {
    legend: {
        display: false
    },
    tooltips: {
        callbacks: {
           label: function(tooltipItem) {
                  return tooltipItem.yLabel;
           }
        }
    }
}
// Add at the start of your script
Chart.defaults.global.legend.display = false;
Source

Also in JavaScript: