菜单
×
×
正确!
练习当为单个元素添加动画时,我们使用哪个 Vue 特定组件? <template> <h1>添加/删除 <p> 标签</h1> <button @click="this.exists = !this.exists">{{btnText}}</button><br> <@(10)> <p v-if="exists">Hello World!</p> </@(10)> </template>
<template> <h1>添加/删除 <p> 标签</h1> <button @click="this.exists = !this.exists">{{btnText}}</button><br> <Transition> <p v-if="exists">Hello World!</p> </Transition> </template>
<template> <h1>添加/删除 <p> 标签</h1> <button @click="this.exists = !this.exists">{{btnText}}</button><br> <transition> <p v-if="exists">Hello World!</p> </transition> </template> 不正确点击这里重试。 正确!下一题 ❯ |
这将重置所有 54 道练习的分数。
您确定要继续吗?