对单个元素进行动画处理时,我们使用哪个 Vue 特定组件?
<template>
<h1>Add/Remove <p> Tag</h1>
<button @click="this.exists = !this.exists">{{btnText}}</button><br>
<@(10)>
<p v-if="exists">Hello World!</p>
</@(10)>
</template>
<template>
<h1>Add/Remove <p> Tag</h1>
<button @click="this.exists = !this.exists">{{btnText}}</button><br>
<Transition>
<p v-if="exists">Hello World!</p>
</Transition>
</template>
<template>
<h1>Add/Remove <p> Tag</h1>
<button @click="this.exists = !this.exists">{{btnText}}</button><br>
<transition>
<p v-if="exists">Hello World!</p>
</transition>
</template>