vue-language-server now reports missing v-bind:key directive on v-for
Use this simple template:
<template v-for="field in schema.fields">
<component :is="getComponent(field)" :key="field.id"></component>
</template>
The error message is reported on template.
Regards.
Does not repro for me:

This should be correct per https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/require-v-for-key.md
This is already known.
Please see https://github.com/vuejs/eslint-plugin-vue/pull/45.
For now you can disable vetur's template lint.
@octref you need place template in an <template> to reproduce.
Most helpful comment
This is already known.
Please see https://github.com/vuejs/eslint-plugin-vue/pull/45.
For now you can disable vetur's template lint.
@octref you need place template in an
<template>to reproduce.