【TypeScript】中括弧でバインドする際に、暗黙anyエラーになる時 Awesome Blog
nuxtjsで、
async created() {
const response = await this.$axios.get('/api')
if (response) {
this.all_name = response.data.map((x) => x.name)
}
},
で(x)
にこのエラーが出た。
解決方法
this.all_name = response.data.map((x: Hoge) => x.name)
Hoge
のところに適切な型ヒントを追加する