Interpolation on textareas (
<textarea>{{text}}</textarea>
) won't work. Usev-model
instead.
This rule reports mustaches in <textarea>
.
👎 Examples of incorrect code for this rule:
<template>
<textarea>{{message}}</textarea>
</template>
👍 Examples of correct code for this rule:
<template>
<textarea v-model="message"></textarea>
</template>
Nothing.