Page MenuHomePhabricator

Figure out how to fix the "vue/no-undef-components" lint warning from eslint
Open, LowestPublic

Event Timeline

Jdforrester-WMF renamed this task from figure out how to fix the vue "no-undefproperties" lint warning to Figure out how to fix the "vue/no-undef-components" lint warning from eslint.Feb 15 2024, 5:58 PM

Its only there for dynamic imported this.$options.components[ 'wl-z-object-key-value' ]
which is ok to ignore I think.
when you register a component dynamically (e.g., in beforeCreate), static analysis can't detect it, so the rule will warn even though your code is correct.