Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.26 KB

require-toggle-inside-transition.md

File metadata and controls

42 lines (29 loc) · 1.26 KB
pageClass sidebarDepth title description
rule-details
0
vue/require-toggle-inside-transition
require control the display of the content inside `<transition>`

vue/require-toggle-inside-transition

require control the display of the content inside <transition>

  • ⚙️ This rule is included in all of "plugin:vue/vue3-essential", "plugin:vue/vue3-strongly-recommended" and "plugin:vue/vue3-recommended".

📖 Rule Details

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>

🔧 Options

Nothing.

📚 Further Reading

🔍 Implementation