<iframe>
elements must have a unique title property to indicate its content to the user.
This rule takes no arguments.
<template>
<iframe title="This is a unique title" />
<iframe :title="uniqueTitle" />
</template>
<template>
<iframe />
<iframe title="" />
</template>