✨ Enhancements
- #1760 Added
vue/no-v-text-v-html-on-component
rule that disallows the use ofv-text
/v-html
on component. - #1762 Added
vue/object-shorthand
rule that appliesobject-shorthand
rule to expressions in<template>
. - #1763 Added
vue/no-undef-components
rule that warns reports component that are used in the<template>
, but that are not defined in the<script setup>
or the Options API'scomponents
section. - #1769 Added
vue/quote-props
rule that appliesquote-props
rule to expressions in<template>
. - #1761 Added support for Vue2 functional component to
vue/no-unused-properties
rule. - #1761 Added support for Vue2 functional component to
vue/no-undef-properties
rule.
🐛 Bug Fixes
- #1770 Fixed false positives for import brace in
vue/script-indent
rule. - #1771 Fixed false positives for
v-bind="obj"
withv-model
invue/attributes-order
rule. - #1775 Fixed false positives for CSS
v-bind()
invue/no-extra-parens
rule. - #1777 Skip conditional expressions in
vue/valid-next-tick
rule.
⚙️ Updates
- #1763 Deprecated
vue/no-unregistered-components
rule.
Full Changelog: v8.3.0...v8.4.0