您好,登錄后才能下訂單哦!
這篇文章給大家介紹v-if指令怎么在vue中使用,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
v-if使用一般有兩個場景:
1- 多個元素 通過條件判斷展示或者隱藏某個元素。或者多個元素
2- 進行兩個視圖之間的切換
下面我寫了兩個例子,是Vue官方的簡單實例。
第一個實例實現了 type等于不同值,A,B,C 三個元素的展示情況。
第二個例子實現了,點擊按鈕實現兩個視圖的切換。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Vue中v-if的常見使用</title> <script src="https://cdn.bootcss.com/vue/2.5.17-beta.0/vue.js"></script> </head> <script> window.onload = function(){ //創建一個vue實例 var app = new Vue({ el: '#app', data: { type:'C', loginType:'username' }, methods:{ changeloginType(){ let self = this; if(self.loginType=='username'){ self.loginType = '' }else{ self.loginType = 'username' } } } }) } </script> <body> <div id="app"> <div >v-if的簡單實用</div> <template> <div v-if="type == 'A'"> A </div> <div v-else-if="type=='B'"> B </div> <div v-else> C </div> </template> <div >v-if的彈框切換</div> <template v-if="loginType === 'username'"> <label>用戶名:</label> <input placeholder="Enter your username" key="username-input"> </template> <template v-else> <label>密碼:</label> <input placeholder="Enter your email address" key="email-input"> </template> <button @click="changeloginType">切換狀態</button> </div> </body> </html>
關于v-if指令怎么在vue中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。