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>
Now loading...
<script> export default { /* ✗ BAD */ render (h) { if (foo) { return h('div', 'hello') } } } </script>
Now loading...

🔧 Options

Nothing.

📚 Further reading

🔍 Implementation

Last Updated: 12/3/2018, 12:55:00 PM