# san/no-reserved-keys
禁止覆盖保留字
- ⚙️ 此规则包含于
"plugin:san/essential"
,"plugin:san/strongly-recommended"
和"plugin:san/recommended"
.
# 📖 规则细节
此规则禁止使用 保留字 (opens new window) 以避免冲突和意外行为。
<script>
/* ✗ BAD */
export default {
dataTypes: {
el: DataTypes.string
},
computed: {
fire() {
return 3;
}
},
nextTick () {}
}
</script>
# 🔧 配置
暂无。