You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What rule do you want to change?
vue/no-undef-components
Does this change cause the rule to produce more or fewer warnings?
fewer warning
How will the change be implemented? (New option, new default behavior, etc.)?
New default behavior
Please provide some example code that this change will affect:
<template>
<div>
<Foo /> <!-- This will trigger a vue/no-undef-components warning, which is incorrect-->
</div>
</template>
<script>
@Component({ components: { Foo }})exportdefaultclassBarextendsVue {}
</script>
What does the rule currently do for this code?
trigger a vue/no-undef-components warning, which is incorrect
What will the rule do after it's changed?
do nothing