Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.14 KB

no-lifecycle-after-await.md

File metadata and controls

47 lines (34 loc) · 1.14 KB
pageClass sidebarDepth title description
rule-details
0
vue/no-lifecycle-after-await
disallow asynchronously registered lifecycle hooks

vue/no-lifecycle-after-await

disallow asynchronously registered lifecycle hooks

📖 Rule Details

This rule reports the lifecycle hooks after await expression.
In setup() function, onXXX lifecycle hooks should be registered synchronously.

<script>
import { onMounted } from 'vue'
export default {
  async setup() {
    /* ✓ GOOD */
    onMounted(() => { /* ... */ })

    await doSomething()

    /* ✗ BAD */
    onMounted(() => { /* ... */ })
  }
}
</script>

🔧 Options

Nothing.

📚 Further reading

🔍 Implementation