Cuando uso una de mis funciones situadas en el archivo vuex js, aparece este error en la consola.

Aquí está el código de la función en el archivo vuex js:
mutations: { getPdfByReportId(reportId) { axios( { url:"http://localhost:9080/api/pdf/"+reportId, method:"GET", responseType:'blob' }).then(response => { //Download the pdf const blob = new Blob([response.data], { type: 'application/pdf' }) const link = document.createElement('a') link.href = URL.createObjectURL(blob) link.download = "report.pdf" link.click() URL.revokeObjectURL(link.href) }); },y aquí es donde lo uso:
<v-icon style="cursor:pointer;" class="rounded-circle" @click="this.$store.commit('getPdfByReportId', item.reportId)" v-bind="props">mdi-download</v-icon>```