選單
×
×
正確!
練習在為單個元素新增動畫時,我們使用哪個 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 個練習的分數。
您確定要繼續嗎?