💼 This rule is enabled in the 📋 template-lint-migration config.
<iframe> elements must have a unique title property to indicate its content to the user.
This rule takes no arguments.
This rule allows the following:
<template>
<iframe title='This is a unique title' />
<iframe title={{someValue}} />
</template>This rule forbids the following:
<template>
<iframe />
<iframe title='' />
</template>