vue/no-v-text
disallow use of v-text
📖 Rule Details
This rule reports all uses of v-text
directive.
<template>
<!-- ✓ GOOD -->
<div>{{ foobar }}</div>
<!-- ✗ BAD -->
<div v-text="foobar"></div>
</template>
🔧 Options
Nothing.
🚀 Version
This rule was introduced in eslint-plugin-vue v7.17.0