Menu
×
×
正确
<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>
不正确
点击 此处 重试 正确
下一题 ❯<template> <h1>Add/Remove <p> Tag</h1> <button @click="this.exists = !this.exists">{{btnText}}</button><br> <w3exercise_input_no_0> <p v-if="exists">Hello World!</p> </w3exercise_input_no_1> </template> |