as per [Link](https://vuejs.org/v2/guide/list.html#v-for-on-a-lt-template-gt) in template tag key bind is not possible but eslint-plugin-vue tells me that is required. .vue file compiles and works correctly Error: Custom elements in iteration require 'v-bind:key' directives ``` <template v-for="f in filtered"> <div>...</div> </template> ```