[Vuejs]-ESLINT error 'props' is assigned a value but never used

0👍

modelValue is a state passed down to this component, which from your shared snippet is not used anywhere as of right now.

The emits that you have in other places of your code are actual strings aka not the modelValue variable.

TLDR: modelValue != 'modelValue'

Leave a comment