Pattern: Use of overridden child content
Issue: -
Reports child content of elements that have a directive which overwrites that child content. By default, those are v-html
and v-text
, additional ones (e.g. Vue I18n's v-t
directive) can be configured manually.
<template>
<!-- ✓ GOOD -->
<div>child content</div>
<div v-html="replacesChildContent"></div>
<!-- ✗ BAD -->
<div v-html="replacesChildContent">child content</div>
</template>
{
"vue/no-child-content": ["error", {
"additionalDirectives": ["foo"] // checks v-foo directive
}]
}
additionalDirectives
... An array of additional directives to check, without thev-
prefix. Empty by default;v-html
andv-text
are always checked.