Pattern: Deprecated transition class name
Issue: -
Disallows use of deprecated v-enter
and v-leave
transition class names in favor of v-enter-from
and v-leave-from
.
<template>
<Transition><div v-if="foo"/></Transition>
</template>
<style scoped>
/* ✗ BAD */
.v-enter {}
.v-leave {}
/* ✓ GOOD */
.v-enter-from {}
.v-leave-from {}
</style>