标签:
v-bind
指令用于响应地更新 HTML 特性 形式如:v-bind:href 缩写为 :href;
html:
<div id="app-2">
<a v-bind:href="url">click me</a>
</div>
js:
var app2 = new Vue({
el:‘#app-2‘,
data:{
url:‘https://www.baidu.com‘
}
})
标签:
原文地址:http://www.cnblogs.com/Pepsi33/p/5918051.html