Pattern: Missing toggle inside <transition>
Issue: -
This rule reports elements inside <transition>
that do not control the display.
<template>
<!-- ✓ GOOD -->
<transition><div v-if="show" /></transition>
<transition><div v-show="show" /></transition>
<!-- ✗ BAD -->
<transition><div /></transition>
</template>