vuetifyjs / eslint-plugin-vuetify

An eslint plugin for Vuetify
Other
120 stars 26 forks source link

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

Closed K-kind closed 7 months ago

K-kind commented 9 months ago

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>
ricardo17coelho commented 9 months ago

I'm also getting this message too.