Eslintが何か言っている
v-for
タグにて、
Elements in iteration expect to have 'v-bind:key' directives
エラーの意味
https://vuejs.org/v2/guide/list.html#Maintaining-State
各項目に一意のキー属性を指定する必要があります とのこと
解決
<th v-for="value in columns">{{ value }}</th>
👇
<th v-for="(value, key) in columns" :key="key">{{ value }}</th>