| pageClass | rule-details |
|---|---|
| sidebarDepth | 0 |
| title | vue/no-v-text |
| description | disallow use of v-text |
| since | v7.17.0 |
disallow use of v-text
This rule reports all uses of v-text directive.
<template>
<!-- ✓ GOOD -->
<div>{{ foobar }}</div>
<!-- ✗ BAD -->
<div v-text="foobar"></div>
</template>Nothing.
This rule was introduced in eslint-plugin-vue v7.17.0