← Back

vue/no-textarea-mustache warning

Disallows the use of mustaches within textareas

Examples

❌  Incorrect

<template>
    <textarea>{{ message }}</textarea>
</template>

✅  Correct

<template>
    <textarea v-model="message" />
</template>