使用過Vue的小伙伴一定使用過v-if 這個屬性,但是這個屬性主要是來干什么的呢,他得用途是那些?
這里我總結了一下,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 style="color:red">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 style="color:green">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>
效果圖:
以上這篇對vue中v-if的常見使用方法詳解就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com