I have added a reference value 'callingTable' to a vue-data-table (using vuetify) like so:
<v-data-table
:headers="callingTableHeaders"
:items="getCallingDetails"
class="elevation-1"
ref="callingTable"
>
After performing some initial tasks, I attempt to refresh the table using the provided reference but encounter an error
this.$refs.callingTable.refresh is not a function"
<script>
refreshTable(){
...
this.$refs.callingTable.refresh();
}
Any ideas on what might be causing this issue?