vuetifyjs/eslint-plugin-vuetify

[BUG] `v-img` incorrectly reports `position` as deprecated

K-kind opened this issue · 1 comments

When I try to use the position props for v-img, I get this message (vuetify 3.4.9, eslint-plugin-vueitfy 2.1.1):

error  'position' has been removed

However, it is listed in the documentation and it does indeed work as it did in Vuetify 2.

Example

demo
<v-card width="200" height="200">
  <v-img
    src="https://cdn.vuetifyjs.com/images/parallax/material.jpg"
    position="left"
    height="200"
    cover
  />
</v-card>

I'm also getting this message too.