# san/no-textarea-mustache
禁止在
<textarea>
中使用插值表达式
- ⚙️ 此规则包含于
"plugin:san/essential"
,"plugin:san/strongly-recommended"
和"plugin:san/recommended"
.
# 📖 规则细节
该规则会提示在 <textarea>
中使用插值表达式的错误。
<template>
<!-- ✓ GOOD -->
<textarea value="{=message=}" />
<!-- ✗ BAD -->
<textarea>{{ message }}</textarea>
</template>
# 🔧 配置
暂无。