指令 (directives) 是帶有 v- 字首的特殊屬性
// 用來設定當前元素的文字內容。相當於 innertext 的功能
v-text="msg">預設的文字內容h1>
v-html="msg">預設的文字內容h1>
v-bind:title="msg"
v-bind:zhidingyi="xm">預設的文字內容h1>
// :title="msg"
:zhidingyi="xm">預設的文字內容h1>
class:
v-bind:class="">
div> 等價於
class="active">
div>
:class="['active']">
div> 等價於
class="active">
div>
v-bind:class="[, shuxingclass]">
div> ===>
class="active text-danger">
div>
style:
v-bind:style="">
div>
v-bind:style="[basestyles, overridingstyles]">
div>
v-on:click="dosomething">
a>
div>
vue配置項methods提供方法或事件
methods: ,
fn:function (na, e)
}
事件修飾符<-- @click.事件修飾符 -->
按鈕button>
v-model="opt">
value="1">北京option>
value="2">天津option>
select>
v-for="(item, key, index) in obj"
:key="index">
}div>
v-for="item in obj">
}div>
v-show="isshow">
v-if="isshow">
v-pre>
}span>
v-once>this will never change:
}span>
vue系列之二 指令
為了2019年,重新學一遍vue 個人理解,如有錯誤請指出 vue 裡面以 v 開的屬性叫做指令。拿個例項來說引入吧 有乙個文字框,同步顯示並計算輸入字串的長度 v model能夠和 data 資料同步的的乙個指令 v bind 和 v model 的區別在於能夠顯示 data 裡面的值,但是卻不會...
Vue的學習之路二 指令學習
v cloak p v text msg h4 div v text msg2 div v html msg2 div type button value 按鈕 v bind title mytitle 123 type button value 按鈕 title mytitle 123 v on ...
vue ivew(二)指令之v bind
v bind 簡單的理解就是它將某屬性與乙個變數繫結,這個變數可以在js檔案中修改賦值。縮寫 預期 any with argument object without argument 引數 attrorprop optional 修飾符 prop 作為乙個 dom property 繫結而不是作為 ...