💼 This rule is enabled in the 📋 template-lint-migration config.
Disallow {{outlet}} outside of route templates. The outlet helper should only be used in route templates to render nested routes.
This rule prevents the use of {{outlet}} in component templates where it doesn't make sense.
Examples of incorrect code for this rule:
// In a component template
<template>
<div>
{{outlet}}
</div>
</template>Examples of correct code for this rule:
// In a component template
<template>
<div>Content</div>
</template>