vue/require-render-return
enforce render function to always return value
- ⚙️ This rule is included in all of
"plugin:vue/essential","plugin:vue/strongly-recommended"and"plugin:vue/recommended".
📖 Rule Details
This rule aims to enforce render function to always return value
<script>
export default {
/* ✓ GOOD */
render (h) {
return h('div', 'hello')
}
}
</script>
<script>
export default {
/* ✗ BAD */
render (h) {
if (foo) {
return h('div', 'hello')
}
}
}
</script>
🔧 Options
Nothing.